Skip to content

Commit 795474b

Browse files
authored
Target Ruby 3.1.7 in CI (#14)
* Update Ruby to 3.1.7 * loosen ruby version requirement
1 parent 766b124 commit 795474b

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/pr-verify.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
# Test on code-dot-org Ruby version
10-
test_3_0_5:
10+
test_3_1_7:
1111
runs-on: ubuntu-latest
1212

1313
steps:
@@ -17,7 +17,7 @@ jobs:
1717
- name: Set up Ruby
1818
uses: ruby/setup-ruby@v1
1919
with:
20-
ruby-version: 3.0.5
20+
ruby-version: 3.1.7
2121
bundler-cache: true
2222

2323
- name: Install gems

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.0.5
1+
3.1.7

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ruby:3.0.5
1+
FROM ruby:3.1.7
22

33
WORKDIR /app
44

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ The extra `credential_process` config line tells AWS to [Source Credentials with
9595

9696
Prerequisites:
9797

98-
* Ruby 3.0.5
98+
* Ruby 3.1.7
9999

100100
You can have Ruby installed locally, or use Docker and mount this repository into a Ruby container. By using Docker you can avoid conflicts with differing Ruby versions or other installed gems. To run and 'bash' into a Ruby container, install Docker and run the following. See [docker-compose.yml](docker-compose.yml) for details.
101101

aws-google.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
33
require 'aws/google/version'
44

55
Gem::Specification.new do |spec|
6-
spec.required_ruby_version = '>= 3.0.5'
6+
spec.required_ruby_version = '~> 3.0'
77
spec.name = 'aws-google'
88
spec.version = Aws::Google::VERSION
99
spec.authors = ['Will Jordan']

0 commit comments

Comments
 (0)