Skip to content

Commit

Permalink
Merge pull request #618 from fog/deprecate-ruby-2
Browse files Browse the repository at this point in the history
Deprecate Ruby-2.0 support
  • Loading branch information
Temikus authored Dec 2, 2023
2 parents 40a6fc7 + c10d673 commit 634f730
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/integration-compute-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
runs-on: self-hosted
strategy:
matrix:
ruby-version: [ '2.7', '3.0', '3.1' ]
ruby-version: [ '3.0', '3.1', '3.2' ]
# Integration tests from the same task cannot run in parallel yet due to cleanup
max-parallel: 1

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration-compute-instance_groups.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
runs-on: self-hosted
strategy:
matrix:
ruby-version: [ '2.7', '3.0', '3.1' ]
ruby-version: [ '3.0', '3.1', '3.2' ]
# Integration tests from the same task cannot run in parallel yet due to cleanup
max-parallel: 1

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration-compute-loadbalancing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
runs-on: self-hosted
strategy:
matrix:
ruby-version: [ '2.7', '3.0', '3.1' ]
ruby-version: [ '3.0', '3.1', '3.2' ]
# Integration tests from the same task cannot run in parallel yet due to cleanup
max-parallel: 1

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration-compute-networking.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
runs-on: self-hosted
strategy:
matrix:
ruby-version: [ '2.7', '3.0', '3.1' ]
ruby-version: [ '3.0', '3.1', '3.2' ]
# Integration tests from the same task cannot run in parallel yet due to cleanup
max-parallel: 1

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration-monitoring.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
runs-on: self-hosted
strategy:
matrix:
ruby-version: [ '2.7', '3.0', '3.1' ]
ruby-version: [ '3.0', '3.1', '3.2' ]
# Integration tests from the same task cannot run in parallel yet due to cleanup
max-parallel: 1

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration-pubsub.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
runs-on: self-hosted
strategy:
matrix:
ruby-version: [ '2.7', '3.0', '3.1' ]
ruby-version: [ '3.0', '3.1', '3.2' ]
# Integration tests from the same task cannot run in parallel yet due to cleanup
max-parallel: 1

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration-sql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
runs-on: self-hosted
strategy:
matrix:
ruby-version: [ '2.7', '3.0', '3.1' ]
ruby-version: [ '3.0', '3.1', '3.2' ]
# Integration tests from the same task cannot run in parallel yet due to cleanup
max-parallel: 1

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration-storage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
runs-on: self-hosted
strategy:
matrix:
ruby-version: [ '2.7', '3.0', '3.1' ]
ruby-version: [ '3.0', '3.1', '3.2' ]
# Integration tests from the same task cannot run in parallel yet due to cleanup
max-parallel: 1

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['2.7', '3.0', '3.1', 'head', 'truffleruby-head']
ruby-version: [ '3.0', '3.1', '3.2', 'head', 'truffleruby-head']

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ $ bundle exec pry

## Supported Ruby Versions

Fog-google is currently supported on Ruby 2.7+.
Fog-google is currently supported on Ruby 3.0+.

In general we support (and run our CI) for Ruby versions that are actively supported
by Ruby Core - that is, Ruby versions that are not end of life. Older versions of
Expand Down

0 comments on commit 634f730

Please sign in to comment.