Skip to content

Commit ae4c489

Browse files
committed
Update GitHub Actions workflow dependencies.
1 parent 16b0df9 commit ae4c489

File tree

2 files changed

+19
-8
lines changed

2 files changed

+19
-8
lines changed

.github/workflows/publish.yaml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ jobs:
1616
go: ${{ steps.gem_version.outputs.new_version }}
1717

1818
steps:
19-
- uses: actions/checkout@v3
19+
- uses: actions/checkout@v4
20+
with:
21+
show-progress: false
2022

2123
- uses: ruby/setup-ruby@v1
2224
with:
@@ -43,12 +45,14 @@ jobs:
4345
contents: write # needed to be able to tag the release
4446
runs-on: ubuntu-latest
4547
needs: pre
46-
if: ${{ needs.pre.outputs.go == 'true' }}
48+
if: needs.pre.outputs.go == 'true'
4749

4850
steps:
49-
- uses: actions/checkout@v3
51+
- uses: actions/checkout@v4
52+
with:
53+
show-progress: false
5054

51-
- uses: actions/setup-node@v3
55+
- uses: actions/setup-node@v4
5256
with:
5357
node-version-file: '.nvmrc'
5458
cache: 'npm'

.github/workflows/test.yaml

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
name: Test
22

3-
on: [push, pull_request]
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
workflow_dispatch:
49

510
jobs:
611
test:
@@ -9,12 +14,14 @@ jobs:
914

1015
strategy:
1116
matrix:
12-
ruby: ['2.7', '3.2']
17+
ruby: ['3.1', '3.2', '3.3']
1318

1419
steps:
15-
- uses: actions/checkout@v3
20+
- uses: actions/checkout@v4
21+
with:
22+
show-progress: false
1623

17-
- uses: actions/setup-node@v3
24+
- uses: actions/setup-node@v4
1825
with:
1926
node-version-file: '.nvmrc'
2027
cache: 'npm'

0 commit comments

Comments
 (0)