Skip to content

Commit 544210f

Browse files
chore(ci): update GitHub action to v4/v5/v6 and Node.js to 22
1 parent f8b8645 commit 544210f

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ runs:
1111
using: 'composite'
1212
steps:
1313
- name: Install Node.js
14-
uses: actions/setup-node@v3
14+
uses: actions/setup-node@v6
1515
with:
16-
node-version: 20
16+
node-version: 22
1717

1818
- name: Install PNPM
1919
uses: pnpm/action-setup@v3
@@ -30,7 +30,7 @@ runs:
3030
3131
- name: Setup PNPM cache
3232
id: cache-pnpm-store
33-
uses: actions/cache@v3
33+
uses: actions/cache@v4
3434
env:
3535
STORE_PATH: ${{ env.STORE_PATH }}
3636
with:

.github/workflows/basic-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: 'macos-14'
2424
timeout-minutes: 30
2525
steps:
26-
- uses: actions/checkout@v4
26+
- uses: actions/checkout@v5
2727
- name: 'Setup Tools'
2828
uses: ./.github/actions/setup-tools
2929
- name: 'Verify iOS + Android + Web'
@@ -35,7 +35,7 @@ jobs:
3535
runs-on: 'macos-14'
3636
timeout-minutes: 30
3737
steps:
38-
- uses: actions/checkout@v4
38+
- uses: actions/checkout@v5
3939
- name: 'Setup Tools'
4040
uses: ./.github/actions/setup-tools
4141
- name: 'Build plugin'

.github/workflows/reusable_build-packages.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@v3
14+
- uses: actions/checkout@v5
1515
with:
1616
fetch-depth: 0
1717
token: ${{ secrets.CAP_GH_RELEASE_TOKEN || github.token }}

.github/workflows/reusable_lint-packages.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@v3
14+
- uses: actions/checkout@v5
1515
with:
1616
fetch-depth: 0
1717
token: ${{ secrets.CAP_GH_RELEASE_TOKEN || github.token }}

.github/workflows/reusable_release-npm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: 'ubuntu-22.04'
2323
timeout-minutes: 30
2424
steps:
25-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@v5
2626
with:
2727
fetch-depth: 0
2828
token: ${{ secrets.CAP_GH_RELEASE_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@v3
17+
- uses: actions/checkout@v5
1818
with:
1919
fetch-depth: 0
2020
token: ${{ secrets.CAP_GH_RELEASE_TOKEN || github.token }}

0 commit comments

Comments
 (0)