Skip to content

Commit e27339d

Browse files
committed
Fix: update workflow configs to drop ruby 3.0
1 parent 6a537ac commit e27339d

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.github/workflows/buildpack-integration-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@ jobs:
2323
cloudevent-builder-source: 'test/conformance'
2424
cloudevent-builder-target: 'cloudevent_func'
2525
prerun: ${{format('test/conformance/prerun.sh {0} testdata/conformance/function', github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha )}}
26-
builder-runtime: 'ruby30'
27-
builder-runtime-version: '3.0'
26+
builder-runtime: 'ruby31'
27+
builder-runtime-version: '3.1'

.github/workflows/conformance.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
strategy:
1818
matrix:
19-
ruby: ['3.0', '3.1', '3.2', '3.3']
19+
ruby: ['3.1', '3.2', '3.3']
2020
steps:
2121
- name: Harden Runner
2222
uses: step-security/harden-runner@4d991eb9b905ef189e4c376166672c3f2f230481 # v2.11.0

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ jobs:
2828
2929
- name: Checkout repo
3030
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
31-
- name: Install Ruby 3.0
31+
- name: Install Ruby 3.1
3232
uses: ruby/setup-ruby@6c79f721fa26dd64559c2700086ac852c18e0756 # v1.225.0
3333
with:
34-
ruby-version: "3.0"
34+
ruby-version: "3.1"
3535
bundler-cache: true
3636
- name: Install toys
3737
run: gem install --no-document toys

.github/workflows/push-gh-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ permissions: read-all
1010
jobs:
1111
push-gh-pages:
1212
env:
13-
ruby_version: "3.0"
13+
ruby_version: "3.1"
1414
runs-on: ubuntu-latest
1515

1616
permissions:

.github/workflows/unit.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
matrix:
1818
os: [ubuntu-latest]
19-
ruby: ['3.0', '3.1', '3.2', '3.3']
19+
ruby: ['3.1', '3.2', '3.3']
2020
flags: ["--only --test-unit"]
2121
include:
2222
- os: ubuntu-latest
@@ -26,13 +26,13 @@ jobs:
2626
ruby: truffleruby
2727
flags: "--only --test-unit"
2828
- os: macos-latest
29-
ruby: "3.0"
29+
ruby: "3.1"
3030
flags: "--only --test-unit"
3131
- os: windows-latest
32-
ruby: "3.0"
32+
ruby: "3.1"
3333
flags: "--only --test-unit"
3434
- os: ubuntu-latest
35-
ruby: "3.0"
35+
ruby: "3.1"
3636
flags: "--only --test-yardoc --test-build --test-examples"
3737
fail-fast: false
3838
runs-on: ${{ matrix.os }}

0 commit comments

Comments
 (0)