Skip to content

Commit e0696e3

Browse files
🔧 ci(deps): Bump the github-actions group with 5 updates (#535)
1 parent c2946b8 commit e0696e3

File tree

4 files changed

+18
-18
lines changed

4 files changed

+18
-18
lines changed

.github/workflows/CD.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
uses: actions/checkout@v5
2020

2121
- name: Setup Node.js
22-
uses: actions/setup-node@v5
22+
uses: actions/setup-node@v6
2323
with:
2424
node-version: 22
2525

@@ -65,7 +65,7 @@ jobs:
6565
uses: actions/checkout@v5
6666

6767
- name: Setup Node.js
68-
uses: actions/setup-node@v5
68+
uses: actions/setup-node@v6
6969
with:
7070
node-version: 22
7171
registry-url: "https://registry.npmjs.org"

.github/workflows/CI.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
uses: actions/checkout@v5
4848

4949
- name: Setup Node.js
50-
uses: actions/setup-node@v5
50+
uses: actions/setup-node@v6
5151
with:
5252
node-version: 22
5353

@@ -77,7 +77,7 @@ jobs:
7777

7878
- name: Commit fixed formatting issues
7979
if: ${{ failure() }}
80-
uses: stefanzweifel/git-auto-commit-action@v6
80+
uses: stefanzweifel/git-auto-commit-action@v7
8181
with:
8282
commit_message: "🧹 style: apply automatic formatting fixes"
8383
branch: ${{ github.head_ref }}
@@ -92,7 +92,7 @@ jobs:
9292
uses: actions/checkout@v5
9393

9494
- name: Setup Node.js
95-
uses: actions/setup-node@v5
95+
uses: actions/setup-node@v6
9696
with:
9797
node-version: 22
9898

@@ -122,7 +122,7 @@ jobs:
122122

123123
- name: Commit fixed linting issues
124124
if: ${{ failure() }}
125-
uses: stefanzweifel/git-auto-commit-action@v6
125+
uses: stefanzweifel/git-auto-commit-action@v7
126126
with:
127127
commit_message: "🐛 fix: apply automatic linting fixes"
128128
branch: ${{ github.head_ref }}
@@ -135,7 +135,7 @@ jobs:
135135
uses: actions/checkout@v5
136136

137137
- name: Setup Node.js
138-
uses: actions/setup-node@v5
138+
uses: actions/setup-node@v6
139139
with:
140140
node-version: 22
141141

@@ -160,7 +160,7 @@ jobs:
160160
run: pnpm test:coverage
161161

162162
- name: Download previous coverage artifact
163-
uses: actions/download-artifact@v5
163+
uses: actions/download-artifact@v6
164164
continue-on-error: true
165165
with:
166166
name: test-coverage-{{ matrix.runs-on }}
@@ -178,7 +178,7 @@ jobs:
178178

179179
- name: Upload test coverage
180180
if: success()
181-
uses: actions/upload-artifact@v4
181+
uses: actions/upload-artifact@v5
182182
with:
183183
name: test-coverage-{{ matrix.runs-on }}
184184
path: coverage/
@@ -192,7 +192,7 @@ jobs:
192192
uses: actions/checkout@v5
193193

194194
- name: Setup Node.js
195-
uses: actions/setup-node@v5
195+
uses: actions/setup-node@v6
196196
with:
197197
node-version: 22
198198

@@ -217,7 +217,7 @@ jobs:
217217
run: pnpm build
218218

219219
- name: Upload build artifacts
220-
uses: actions/upload-artifact@v4
220+
uses: actions/upload-artifact@v5
221221
continue-on-error: true
222222
with:
223223
name: build-artifacts-{{ matrix.runs-on }}
@@ -232,7 +232,7 @@ jobs:
232232
uses: actions/checkout@v5
233233

234234
- name: Setup Node.js
235-
uses: actions/setup-node@v5
235+
uses: actions/setup-node@v6
236236
with:
237237
node-version: 22
238238
registry-url: "https://registry.npmjs.org"
@@ -255,7 +255,7 @@ jobs:
255255
run: pnpm install --frozen-lockfile
256256

257257
- name: Download build artifacts
258-
uses: actions/download-artifact@v5
258+
uses: actions/download-artifact@v6
259259
continue-on-error: true
260260
with:
261261
name: build-artifacts-{{ matrix.runs-on }}

.github/workflows/CODEQL.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@ jobs:
2929
fetch-depth: 0
3030

3131
- name: Initialize CodeQL
32-
uses: github/codeql-action/init@v3
32+
uses: github/codeql-action/init@v4
3333
with:
3434
languages: ${{ matrix.language }}
3535
queries: security-extended,security-and-quality
3636

3737
- name: CodeQL Autobuild
38-
uses: github/codeql-action/autobuild@v3
38+
uses: github/codeql-action/autobuild@v4
3939

4040
- name: CodeQL Analysis
41-
uses: github/codeql-action/analyze@v3
41+
uses: github/codeql-action/analyze@v4

.github/workflows/DependabotBot.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
token: ${{ secrets.GITHUB_TOKEN }}
2525

2626
- name: Setup Node.js
27-
uses: actions/setup-node@v5
27+
uses: actions/setup-node@v6
2828
with:
2929
node-version: 22
3030

@@ -58,7 +58,7 @@ jobs:
5858
continue-on-error: true
5959

6060
- name: Commit formatting changes
61-
uses: stefanzweifel/git-auto-commit-action@v6
61+
uses: stefanzweifel/git-auto-commit-action@v7
6262
with:
6363
commit_message: "🧹 style: apply formatting to dependabot PR"
6464
branch: ${{ github.head_ref }}

0 commit comments

Comments
 (0)