Skip to content

Commit

Permalink
Update Ruby and gems (#48)
Browse files Browse the repository at this point in the history
Switches to a generic Ruby 3.3+ specifier to prevent errors
when not running the exact Ruby patch version locally.
  • Loading branch information
edmorley authored Oct 21, 2024
1 parent 2d8bb76 commit bc4b8fb
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 29 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/rundoc-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

- uses: ruby/setup-ruby@v1
with:
ruby-version: "3.3.2"
ruby-version: "3.3"
bundler-cache: true # do run 'bundle install' and cache
working-directory: .rundoc-workspace
- uses: buildpacks/github-actions/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rundoc-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

- uses: ruby/setup-ruby@v1
with:
ruby-version: "3.3.2"
ruby-version: "3.3"
bundler-cache: true # do run 'bundle install' and cache
working-directory: .rundoc-workspace
- uses: buildpacks/github-actions/[email protected]
Expand Down
4 changes: 2 additions & 2 deletions .rundoc-workspace/Gemfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# frozen_string_literal: true

source "https://rubygems.org"
ruby "3.3.2"
source 'https://rubygems.org'
ruby '~> 3.3'

gem 'rundoc', '~> 3.0'
48 changes: 23 additions & 25 deletions .rundoc-workspace/Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,20 @@ GEM
addressable (2.8.7)
public_suffix (>= 2.0.2, < 7.0)
aws-eventstream (1.3.0)
aws-partitions (1.956.0)
aws-sdk-core (3.201.1)
aws-partitions (1.992.0)
aws-sdk-core (3.210.0)
aws-eventstream (~> 1, >= 1.3.0)
aws-partitions (~> 1, >= 1.651.0)
aws-sigv4 (~> 1.8)
aws-partitions (~> 1, >= 1.992.0)
aws-sigv4 (~> 1.9)
jmespath (~> 1, >= 1.6.1)
aws-sdk-kms (1.88.0)
aws-sdk-core (~> 3, >= 3.201.0)
aws-sdk-kms (1.95.0)
aws-sdk-core (~> 3, >= 3.210.0)
aws-sigv4 (~> 1.5)
aws-sdk-s3 (1.156.0)
aws-sdk-core (~> 3, >= 3.201.0)
aws-sdk-s3 (1.169.0)
aws-sdk-core (~> 3, >= 3.210.0)
aws-sdk-kms (~> 1)
aws-sigv4 (~> 1.5)
aws-sigv4 (1.8.0)
aws-sigv4 (1.10.0)
aws-eventstream (~> 1, >= 1.0.2)
base64 (0.2.0)
capybara (3.40.0)
Expand All @@ -29,32 +29,31 @@ GEM
rack-test (>= 0.6.3)
regexp_parser (>= 1.5, < 3.0)
xpath (~> 3.2)
dotenv (3.1.2)
dotenv (3.1.4)
jmespath (1.6.2)
logger (1.6.0)
logger (1.6.1)
matrix (0.4.2)
mini_mime (1.1.5)
nokogiri (1.16.6-aarch64-linux)
nokogiri (1.16.7-aarch64-linux)
racc (~> 1.4)
nokogiri (1.16.6-arm-linux)
nokogiri (1.16.7-arm-linux)
racc (~> 1.4)
nokogiri (1.16.6-arm64-darwin)
nokogiri (1.16.7-arm64-darwin)
racc (~> 1.4)
nokogiri (1.16.6-x86-linux)
nokogiri (1.16.7-x86-linux)
racc (~> 1.4)
nokogiri (1.16.6-x86_64-darwin)
nokogiri (1.16.7-x86_64-darwin)
racc (~> 1.4)
nokogiri (1.16.6-x86_64-linux)
nokogiri (1.16.7-x86_64-linux)
racc (~> 1.4)
parslet (2.0.0)
public_suffix (6.0.0)
racc (1.8.0)
rack (3.1.7)
public_suffix (6.0.1)
racc (1.8.1)
rack (3.1.8)
rack-test (2.1.0)
rack (>= 1.3)
regexp_parser (2.9.2)
rexml (3.3.6)
strscan
rexml (3.3.8)
rubyzip (2.3.2)
rundoc (3.0.0)
aws-sdk-s3 (~> 1)
Expand All @@ -64,14 +63,13 @@ GEM
parslet (~> 2)
selenium-webdriver (~> 4)
thor
selenium-webdriver (4.22.0)
selenium-webdriver (4.25.0)
base64 (~> 0.2)
logger (~> 1.4)
rexml (~> 3.2, >= 3.2.5)
rubyzip (>= 1.2.2, < 3.0)
websocket (~> 1.0)
strscan (3.1.0)
thor (1.3.1)
thor (1.3.2)
websocket (1.2.11)
xpath (3.2.0)
nokogiri (~> 1.8)
Expand Down

0 comments on commit bc4b8fb

Please sign in to comment.