Skip to content

Commit 31f36a3

Browse files
chore(deps): update ci (#2713)
1 parent aca51ba commit 31f36a3

File tree

4 files changed

+19
-19
lines changed

4 files changed

+19
-19
lines changed

.github/workflows/__codeql.yml

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

2020
steps:
2121
- name: Checkout repository ⬇️
22-
uses: actions/[email protected].0
22+
uses: actions/[email protected].1
2323
with:
2424
ref: ${{ inputs.commit }}
2525
show-progress: false
2626

2727
- name: Initialize CodeQL 🛠️
28-
uses: github/codeql-action/[email protected].5
28+
uses: github/codeql-action/[email protected].8
2929
with:
3030
queries: security-and-quality
3131
languages: ${{ matrix.language }}
3232
dependency-caching: true
3333

3434
- name: Autobuild 📦
35-
uses: github/codeql-action/[email protected].5
35+
uses: github/codeql-action/[email protected].8
3636

3737
- name: Perform CodeQL Analysis 🧪
38-
uses: github/codeql-action/[email protected].5
38+
uses: github/codeql-action/[email protected].8
3939
with:
4040
category: '/language:${{matrix.language}}'

.github/workflows/__deploy.yml

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

3434
steps:
3535
- name: Download workflow artifact ⬇️
36-
uses: actions/download-artifact@v6.0.0
36+
uses: actions/download-artifact@v7.0.0
3737
with:
3838
name: ${{ inputs.artifact_name }}
3939
path: dist

.github/workflows/__package.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -57,13 +57,13 @@ jobs:
5757
runs-on: ${{ matrix.platform }}-latest
5858
steps:
5959
- name: Checkout ⬇️
60-
uses: actions/[email protected].0
60+
uses: actions/[email protected].1
6161
with:
6262
ref: ${{ inputs.commit || github.sha }}
6363
show-progress: false
6464

6565
- name: Setup node environment ⚙️
66-
uses: actions/setup-node@v6.0.0
66+
uses: actions/setup-node@v6.1.0
6767
with:
6868
node-version: lts/*
6969
check-latest: true
@@ -87,7 +87,7 @@ jobs:
8787
run: npm run build
8888

8989
- name: Upload built application artifact ⬆️🐧🍎🪟
90-
uses: actions/upload-artifact@v5.0.0
90+
uses: actions/upload-artifact@v6.0.0
9191
id: artifact
9292
with:
9393
compression-level: 0
@@ -206,7 +206,7 @@ jobs:
206206

207207
steps:
208208
- name: Checkout ⬇️
209-
uses: actions/[email protected].0
209+
uses: actions/[email protected].1
210210
with:
211211
ref: ${{ inputs.commit || github.sha }}
212212
show-progress: false
@@ -238,7 +238,7 @@ jobs:
238238
${{ needs.docker_inputs.outputs.tags }}
239239
240240
- name: Upload Docker image as artifact ⬆️📦
241-
uses: actions/upload-artifact@v5.0.0
241+
uses: actions/upload-artifact@v6.0.0
242242
id: artifact
243243
with:
244244
compression-level: 0
@@ -253,7 +253,7 @@ jobs:
253253
subject-digest: sha256:${{ steps.artifact.outputs.artifact-digest }}
254254

255255
- name: Upload cache artifact ⬆️⚙️
256-
uses: actions/upload-artifact@v5.0.0
256+
uses: actions/upload-artifact@v6.0.0
257257
if: ${{ inputs.push }}
258258
with:
259259
compression-level: 0
@@ -271,7 +271,7 @@ jobs:
271271

272272
steps:
273273
- name: Download Docker image artifact 📦⬇️
274-
uses: actions/download-artifact@v6.0.0
274+
uses: actions/download-artifact@v7.0.0
275275
with:
276276
name: docker_image-linux_amd64
277277

@@ -283,7 +283,7 @@ jobs:
283283
docker cp $(docker create --name jf $IMAGE_SHA):$ASSETS/ ./dist
284284
285285
- name: Upload client artifact ⬆️💻
286-
uses: actions/upload-artifact@v5.0.0
286+
uses: actions/upload-artifact@v6.0.0
287287
id: artifact
288288
with:
289289
compression-level: 0
@@ -307,13 +307,13 @@ jobs:
307307

308308
steps:
309309
- name: Download cache artifacts 📦⬇️
310-
uses: actions/download-artifact@v6.0.0
310+
uses: actions/download-artifact@v7.0.0
311311
with:
312312
pattern: buildx-*
313313
path: /tmp/${{ env.REGISTRY_IMAGE }}/cache/
314314

315315
- name: Checkout ⬇️
316-
uses: actions/[email protected].0
316+
uses: actions/[email protected].1
317317
with:
318318
ref: ${{ inputs.commit || github.sha }}
319319
show-progress: false

.github/workflows/__quality_checks.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout Repository
17-
uses: actions/[email protected].0
17+
uses: actions/[email protected].1
1818
with:
1919
ref: ${{ inputs.commit }}
2020
show-progress: false
@@ -39,13 +39,13 @@ jobs:
3939

4040
steps:
4141
- name: Checkout ⬇️
42-
uses: actions/[email protected].0
42+
uses: actions/[email protected].1
4343
with:
4444
ref: ${{ inputs.commit }}
4545
show-progress: false
4646

4747
- name: Setup node environment ⚙️
48-
uses: actions/setup-node@v6.0.0
48+
uses: actions/setup-node@v6.1.0
4949
with:
5050
node-version: lts/*
5151
check-latest: true
@@ -62,7 +62,7 @@ jobs:
6262

6363
steps:
6464
- name: Checkout ⬇️
65-
uses: actions/[email protected].0
65+
uses: actions/[email protected].1
6666
with:
6767
ref: ${{ inputs.commit }}
6868
show-progress: false

0 commit comments

Comments
 (0)