We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 69f1e24 commit 8d34901Copy full SHA for 8d34901
.github/workflows/ci-cd.yaml
@@ -50,7 +50,7 @@ jobs:
50
fail-fast: false
51
matrix:
52
ruby-version: [
53
- "2.7", "3.1"
+ "3.1", "3.4"
54
]
55
os: [
56
ubuntu-latest,
@@ -61,7 +61,7 @@ jobs:
61
steps:
62
- uses: actions/checkout@v4
63
- name: Set up ruby ${{ matrix.ruby-version }}
64
- uses: actions/setup-ruby@v1
+ uses: ruby/setup-ruby@v1
65
with:
66
ruby-version: ${{ matrix.ruby-version }}
67
bundler-cache: true
@@ -83,10 +83,10 @@ jobs:
83
runs-on: ubuntu-latest
84
85
- uses: actions/checkout@v3
86
- - name: Set up Ruby 2.7
+ - name: Set up Ruby 3.4
87
uses: ruby/setup-ruby@v1
88
89
- ruby-version: 2.7
+ ruby-version: 3.4
90
- name: Check if properly tagged
91
run: |
92
PACKAGE_VERSION="$(ruby -e 'puts Gem::Specification::load("tinify.gemspec").version')";
0 commit comments