Skip to content

Commit 79dcab0

Browse files
chore(ci): upgrade github actions to v5/v6 (#89)
1 parent 6c4cafb commit 79dcab0

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/actions/setup-tools/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ runs:
55
using: 'composite'
66
steps:
77
- name: Install Node.js
8-
uses: actions/setup-node@v4
8+
uses: actions/setup-node@v6
99
with:
1010
node-version: 22 # semantic-release requires at least this version
1111
- name: Update npm # To ensure npm 11.5.1 or later is installed for Trusted publishing

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
runs-on: 'ubuntu-22.04'
3737
timeout-minutes: 30
3838
steps:
39-
- uses: actions/checkout@v4
39+
- uses: actions/checkout@v5
4040
with:
4141
fetch-depth: 0
4242
token: ${{ secrets.CAP_GH_RELEASE_TOKEN }}

.github/workflows/reusable_build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: 'ubuntu-22.04'
1212
timeout-minutes: 30
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v5
1515
with:
1616
fetch-depth: 0
1717
token: ${{ secrets.THE_GH_RELEASE_TOKEN || github.token }}

.github/workflows/reusable_lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: 'macos-14'
1212
timeout-minutes: 30
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v5
1515
with:
1616
fetch-depth: 0
1717
token: ${{ secrets.THE_GH_RELEASE_TOKEN || github.token }}

.github/workflows/reusable_setup.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ${{ matrix.os }}
1515
timeout-minutes: 30
1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v5
1818
with:
1919
fetch-depth: 0
2020
token: ${{ secrets.THE_GH_RELEASE_TOKEN || github.token }}

0 commit comments

Comments
 (0)