Skip to content

Commit 78f7952

Browse files
committed
chore: bump action versions
1 parent a93c6ee commit 78f7952

8 files changed

Lines changed: 17 additions & 17 deletions

File tree

.github/actions/pnpm-install/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ runs:
3636

3737
steps:
3838
- name: Checkout
39-
uses: actions/checkout@v6
39+
uses: actions/checkout@v7
4040

4141
- name: Setup pnpm
4242
uses: pnpm/action-setup@v6
@@ -45,7 +45,7 @@ runs:
4545
run_install: false
4646

4747
- name: Setup Node.js
48-
uses: actions/setup-node@v6
48+
uses: actions/setup-node@v7
4949
with:
5050
node-version: 24
5151
cache: "pnpm"

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
steps:
2222
- name: Checkout
23-
uses: actions/checkout@v6
23+
uses: actions/checkout@v7
2424

2525
- name: PNPM Install
2626
uses: ./.github/actions/pnpm-install

.github/workflows/checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010

1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@v6
13+
uses: actions/checkout@v7
1414

1515
- name: PNPM Install
1616
uses: ./.github/actions/pnpm-install

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
steps:
1818
- name: Checkout repository
19-
uses: actions/checkout@v6
19+
uses: actions/checkout@v7
2020

2121
- name: Initialize CodeQL
2222
uses: github/codeql-action/init@v4

.github/workflows/clean_cache.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Check out code
15-
uses: actions/checkout@v6
15+
uses: actions/checkout@v7
1616

1717
- name: Cleanup
1818
run: |

.github/workflows/release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
steps:
2121
- name: Git checkout
22-
uses: actions/checkout@v6
22+
uses: actions/checkout@v7
2323
with:
2424
fetch-depth: 0
2525

@@ -30,7 +30,7 @@ jobs:
3030
run_install: false
3131

3232
- name: Setup Node.js
33-
uses: actions/setup-node@v6
33+
uses: actions/setup-node@v7
3434
with:
3535
node-version: 24
3636
cache: pnpm
@@ -57,7 +57,7 @@ jobs:
5757

5858
steps:
5959
- name: Git checkout
60-
uses: actions/checkout@v6
60+
uses: actions/checkout@v7
6161
with:
6262
fetch-depth: 0
6363

@@ -68,7 +68,7 @@ jobs:
6868
run_install: false
6969

7070
- name: Setup Node.js
71-
uses: actions/setup-node@v6
71+
uses: actions/setup-node@v7
7272
with:
7373
node-version: 24
7474
cache: pnpm
@@ -100,7 +100,7 @@ jobs:
100100

101101
steps:
102102
- name: Git checkout
103-
uses: actions/checkout@v6
103+
uses: actions/checkout@v7
104104
with:
105105
fetch-depth: 0
106106

@@ -111,7 +111,7 @@ jobs:
111111
run_install: false
112112

113113
- name: Setup Node.js
114-
uses: actions/setup-node@v6
114+
uses: actions/setup-node@v7
115115
with:
116116
node-version: 24
117117
cache: pnpm

.github/workflows/test.yml

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

1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@v6
13+
uses: actions/checkout@v7
1414

1515
- name: PNPM Install
1616
uses: ./.github/actions/pnpm-install
@@ -31,7 +31,7 @@ jobs:
3131

3232
# steps:
3333
# - name: Checkout
34-
# uses: actions/checkout@v6
34+
# uses: actions/checkout@v7
3535

3636
# - name: PNPM Install
3737
# uses: ./.github/actions/pnpm-install

.github/workflows/website.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
server_api_url: ${{ steps.decision.outputs.server_api_url }}
2424
steps:
2525
- name: Checkout repository
26-
uses: actions/checkout@v6
26+
uses: actions/checkout@v7
2727

2828
- name: Decide whether to deploy
2929
id: decision
@@ -63,7 +63,7 @@ jobs:
6363

6464
steps:
6565
- name: Checkout repository
66-
uses: actions/checkout@v6
66+
uses: actions/checkout@v7
6767

6868
- name: Initialize CodeQL
6969
uses: github/codeql-action/init@v4
@@ -97,7 +97,7 @@ jobs:
9797

9898
steps:
9999
- name: Git checkout
100-
uses: actions/checkout@v6
100+
uses: actions/checkout@v7
101101

102102
- name: Assign short SHA
103103
run: echo "SHORT_SHA=$(git rev-parse --short HEAD)" >> $GITHUB_ENV

0 commit comments

Comments
 (0)