Skip to content

Commit e06b220

Browse files
committed
chore: bump all GitHub actions to latest versions
TICKET: VL-5361
1 parent 6bc1fd3 commit e06b220

4 files changed

Lines changed: 26 additions & 26 deletions

File tree

.github/workflows/audit-api-spec.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
run: yq -P < openapi.json > openapi-head.yaml
5757

5858
- name: Upload API spec to artifact
59-
uses: actions/upload-artifact@v6
59+
uses: actions/upload-artifact@v7
6060
with:
6161
name: openapi-head.yaml
6262
path: openapi-head.yaml
@@ -116,7 +116,7 @@ jobs:
116116
run: yq -P < openapi.json > openapi-merge-base.yaml
117117

118118
- name: Upload API spec to artifact
119-
uses: actions/upload-artifact@v6
119+
uses: actions/upload-artifact@v7
120120
with:
121121
name: openapi-merge-base.yaml
122122
path: openapi-merge-base.yaml
@@ -129,12 +129,12 @@ jobs:
129129
specs-identical: ${{ steps.check-specs-identical.outputs.identical }}
130130
steps:
131131
- name: Download head API spec artifact
132-
uses: actions/download-artifact@v7
132+
uses: actions/download-artifact@v8
133133
with:
134134
name: openapi-head.yaml
135135

136136
- name: Download merge base API spec artifact
137-
uses: actions/download-artifact@v7
137+
uses: actions/download-artifact@v8
138138
with:
139139
name: openapi-merge-base.yaml
140140

@@ -161,7 +161,7 @@ jobs:
161161
ref: ${{ github.event.pull_request.head.sha }}
162162

163163
- name: Download head API spec artifact
164-
uses: actions/download-artifact@v7
164+
uses: actions/download-artifact@v8
165165
with:
166166
name: openapi-head.yaml
167167

@@ -210,12 +210,12 @@ jobs:
210210
runs-on: ubuntu-latest
211211
steps:
212212
- name: Download head API spec artifact
213-
uses: actions/download-artifact@v7
213+
uses: actions/download-artifact@v8
214214
with:
215215
name: openapi-head.yaml
216216

217217
- name: Download merge base API spec artifact
218-
uses: actions/download-artifact@v7
218+
uses: actions/download-artifact@v8
219219
with:
220220
name: openapi-merge-base.yaml
221221

@@ -334,4 +334,4 @@ jobs:
334334
exit 1
335335
fi
336336
- name: Verify API Spec Check Passed
337-
run: echo "✅ All API specification checks passed successfully!"
337+
run: echo "✅ All API specification checks passed successfully!"

.github/workflows/ci.yml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ jobs:
3131
with:
3232
mode: firewall-free
3333

34-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
34+
- uses: actions/checkout@v6
3535
with:
3636
ref: ${{ github.event.pull_request.head.sha }}
3737
fetch-depth: 0
3838

3939
- name: Setup node:${{ matrix.node-version }}
40-
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
40+
uses: actions/setup-node@v6
4141
with:
4242
node-version: ${{ matrix.node-version }}
4343

@@ -56,7 +56,7 @@ jobs:
5656
5757
- name: restore lerna dependencies
5858
id: lerna-cache
59-
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 #v4.2.3
59+
uses: actions/cache@v5
6060
with:
6161
path: |
6262
node_modules
@@ -101,18 +101,18 @@ jobs:
101101
with:
102102
mode: firewall-free
103103

104-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
104+
- uses: actions/checkout@v6
105105
with:
106106
ref: ${{ github.event.pull_request.head.sha }}
107107

108108
- name: Setup node 20
109-
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
109+
uses: actions/setup-node@v6
110110
with:
111111
node-version: 20
112112

113113
- name: restore lerna dependencies
114114
id: lerna-cache
115-
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 #v4.2.3
115+
uses: actions/cache@v5
116116
with:
117117
path: |
118118
node_modules
@@ -152,12 +152,12 @@ jobs:
152152
with:
153153
mode: firewall-free
154154

155-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
155+
- uses: actions/checkout@v6
156156
with:
157157
ref: ${{ github.event.pull_request.head.sha }}
158158

159159
- name: Setup node 20
160-
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
160+
uses: actions/setup-node@v6
161161
with:
162162
node-version: 20 # this just needs to pass our lock file requirement for compilation
163163

@@ -216,7 +216,7 @@ jobs:
216216
217217
- name: restore lerna dependencies
218218
id: lerna-cache
219-
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 #v4.2.3
219+
uses: actions/cache@v5
220220
with:
221221
path: |
222222
node_modules
@@ -244,7 +244,7 @@ jobs:
244244
runs-on: ubuntu-latest
245245

246246
steps:
247-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
247+
- uses: actions/checkout@v6
248248
with:
249249
ref: ${{ github.event.pull_request.head.sha }}
250250

@@ -316,7 +316,7 @@ jobs:
316316
runs-on: ubuntu-latest
317317

318318
steps:
319-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
319+
- uses: actions/checkout@v6
320320
with:
321321
ref: ${{ github.event.pull_request.head.sha }}
322322

@@ -327,7 +327,7 @@ jobs:
327327
runs-on: ubuntu-latest
328328

329329
steps:
330-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
330+
- uses: actions/checkout@v6
331331
with:
332332
ref: ${{ github.event.pull_request.head.sha }}
333333

@@ -342,18 +342,18 @@ jobs:
342342
with:
343343
mode: firewall-free
344344

345-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
345+
- uses: actions/checkout@v6
346346
with:
347347
ref: ${{ github.event.pull_request.head.sha }}
348348

349349
- name: Setup node 22
350-
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
350+
uses: actions/setup-node@v6
351351
with:
352352
node-version: 22
353353

354354
- name: restore lerna dependencies
355355
id: lerna-cache
356-
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 #v4.2.3
356+
uses: actions/cache@v5
357357
with:
358358
path: |
359359
node_modules

.github/workflows/claude-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
AWS_SESSION_TOKEN: ${{ secrets.AWS_SESSION_TOKEN }}
2727
steps:
2828
- name: Checkout repository
29-
uses: actions/checkout@v5
29+
uses: actions/checkout@v6
3030

3131
- name: Configure AWS Credentials (OIDC)
3232
uses: aws-actions/configure-aws-credentials@v5

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ jobs:
2626
mode: firewall-free
2727

2828
- name: Checkout repository
29-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
29+
uses: actions/checkout@v6
3030

3131
- name: Setup Node
32-
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
32+
uses: actions/setup-node@v6
3333
with:
3434
node-version-file: .nvmrc
3535

0 commit comments

Comments
 (0)