Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .github/workflows/publisher.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
steps:
# Set up
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
persist-credentials: false
- name: Set up Ruby
Expand All @@ -31,9 +31,8 @@ jobs:
bundle install --jobs 4 --retry 3

# Release
- uses: rubygems/release-gem@v1

# see: https://github.com/rubygems/release-gem/blob/ebe1ec66bd8d2c709ac29aa2b43438d450e7a0a6/action.yml
- uses: rubygems/release-gem@ebe1ec66bd8d2c709ac29aa2b43438d450e7a0a6
Comment on lines 34 to +35
Copy link

Copilot AI Sep 11, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Using a specific commit hash instead of a version tag makes it harder to track what version is being used and can complicate updates. Consider using a proper version tag like @v1.x.x if available.

Suggested change
# see: https://github.com/rubygems/release-gem/blob/ebe1ec66bd8d2c709ac29aa2b43438d450e7a0a6/action.yml
- uses: rubygems/release-gem@ebe1ec66bd8d2c709ac29aa2b43438d450e7a0a6
# see: https://github.com/rubygems/release-gem/blob/v1/action.yml
- uses: rubygems/release-gem@v1

Copilot uses AI. Check for mistakes.
- name: Generate gem
run: gem build trino-client-ruby.gemspec && ls -l trino-client-ruby-*.gem
working-directory: ./trino-client-ruby
Expand Down
Loading