Skip to content

Commit 514e272

Browse files
committed
Update CI scripts
1 parent c70553f commit 514e272

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ jobs:
2323

2424
steps:
2525
- name: Checkout repository
26-
uses: actions/checkout@v4
26+
uses: actions/checkout@v6
2727

2828
- name: Setup Node.js
29-
uses: actions/setup-node@v4
29+
uses: actions/setup-node@v6
3030
with:
3131
node-version: '22'
3232
cache: 'npm'

.github/workflows/generators.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
name: ${{ matrix.framework }} (TS:${{ matrix.typescript }}, TW:${{ matrix.tailwind }}, Inertia:${{ matrix.inertia_version }})
3131

3232
steps:
33-
- uses: actions/checkout@v4
33+
- uses: actions/checkout@v6
3434

3535
- name: Set up Ruby
3636
uses: ruby/setup-ruby@v1
@@ -42,7 +42,7 @@ jobs:
4242
run: bundle exec rspec --tag type:generator
4343

4444
- name: Set up Node
45-
uses: actions/setup-node@v4
45+
uses: actions/setup-node@v6
4646
with:
4747
node-version: ${{ matrix.node }}
4848

@@ -69,7 +69,7 @@ jobs:
6969
7070
- name: Upload test artifacts
7171
if: failure()
72-
uses: actions/upload-artifact@v4
72+
uses: actions/upload-artifact@v5
7373
with:
7474
name: test-output-${{ matrix.framework }}-ts${{ matrix.typescript }}-tw${{ matrix.tailwind }}-v${{ matrix.inertia_version }}
7575
path: |

.github/workflows/push.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ jobs:
1919
runs-on: ubuntu-latest
2020
name: Linter
2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v6
2323
- name: Set up Ruby
2424
uses: ruby/setup-ruby@v1
2525
with:
26-
ruby-version: "3.3"
26+
ruby-version: "3.4"
2727
bundler: latest
2828
bundler-cache: true
2929
- name: Run RuboCop
@@ -53,21 +53,21 @@ jobs:
5353
name: Test against Ruby ${{ matrix.ruby }} / Rails ${{ matrix.rails }}
5454

5555
steps:
56-
- uses: actions/checkout@v4
56+
- uses: actions/checkout@v6
5757

5858
- name: Setup System
5959
run: sudo apt-get install libsqlite3-dev
6060

6161
- name: Set up Node.js
62-
uses: actions/setup-node@v4
62+
uses: actions/setup-node@v6
6363
with:
6464
node-version: 22.x
6565

6666
- name: Set up Ruby
6767
uses: ruby/setup-ruby@v1
6868
with:
6969
ruby-version: ${{ matrix.ruby }}
70-
rubygems: latest
70+
rubygems: ${{ matrix.ruby == '3.0' && '2' || 'latest' }}
7171
bundler-cache: true
7272
env:
7373
RAILS_VERSION: ${{ matrix.rails }}

0 commit comments

Comments
 (0)