Skip to content

Commit fca899e

Browse files
chore(deps): pin dependencies
1 parent 995d602 commit fca899e

5 files changed

Lines changed: 24 additions & 24 deletions

File tree

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
steps:
2727
- name: Docker meta
2828
id: docker_meta
29-
uses: docker/metadata-action@v6
29+
uses: docker/metadata-action@v6.1.0
3030
with:
3131
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
3232
tags: |
@@ -38,18 +38,18 @@ jobs:
3838
type=semver,pattern=stable,enable=${{ !contains(github.event.push.ref, 'alpha') && !contains(github.event.push.ref, 'beta') && !contains(github.event.push.ref, 'rc') }}
3939
4040
- name: Login to DockerHub
41-
uses: docker/login-action@v4
41+
uses: docker/login-action@v4.2.0
4242
with:
4343
registry: ${{ env.REGISTRY }}
4444
username: ${{ github.actor }}
4545
password: ${{ secrets.GITHUB_TOKEN }}
4646

4747
- name: Set up Docker Buildx
48-
uses: docker/setup-buildx-action@v4
48+
uses: docker/setup-buildx-action@v4.1.0
4949

5050
- name: Build and push
5151
id: docker_build
52-
uses: docker/build-push-action@v7
52+
uses: docker/build-push-action@v7.2.0
5353
with:
5454
push: ${{ github.event_name == 'push' || github.event_name == 'schedule' }}
5555
tags: ${{ steps.docker_meta.outputs.tags }}

.github/workflows/check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020

2121
steps:
22-
- uses: actions/checkout@v6
22+
- uses: actions/checkout@v6.0.3
2323
- uses: pnpm/action-setup@v6.0.8
2424
with:
2525
version: 11.6.0
@@ -29,7 +29,7 @@ jobs:
2929
xss-scan:
3030
runs-on: ubuntu-latest
3131
steps:
32-
- uses: actions/checkout@v6
32+
- uses: actions/checkout@v6.0.3
3333
- uses: pnpm/action-setup@v6.0.8
3434
with:
3535
version: 11.6.0

.github/workflows/release-on-deps-update.yml

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

1818
steps:
19-
- uses: actions/checkout@v6
19+
- uses: actions/checkout@v6.0.3
2020
with:
2121
fetch-depth: 0
2222

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515

1616
steps:
17-
- uses: actions/checkout@v6
17+
- uses: actions/checkout@v6.0.3
1818
with:
1919
token: ${{ secrets.RELEASE_TOKEN }}
2020
fetch-depth: 0
@@ -23,7 +23,7 @@ jobs:
2323
with:
2424
version: 11.6.0
2525

26-
- uses: actions/setup-node@v6
26+
- uses: actions/setup-node@v6.4.0
2727
with:
2828
node-version: 24.16.0
2929
cache: pnpm

.github/workflows/test.yml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ jobs:
2323
name: unit
2424
runs-on: ubuntu-latest
2525
steps:
26-
- uses: actions/checkout@v6
26+
- uses: actions/checkout@v6.0.3
2727
- uses: pnpm/action-setup@v6.0.8
2828
with:
2929
version: 11.6.0
30-
- uses: actions/setup-node@v6
30+
- uses: actions/setup-node@v6.4.0
3131
with:
3232
node-version: 24.16.0
3333
cache: pnpm
@@ -46,7 +46,7 @@ jobs:
4646
steps:
4747
- name: Docker meta
4848
id: docker_meta
49-
uses: docker/metadata-action@v6
49+
uses: docker/metadata-action@v6.1.0
5050
with:
5151
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
5252
tags: |
@@ -58,11 +58,11 @@ jobs:
5858
type=semver,pattern=stable,enable=${{ !contains(github.event.push.ref, 'alpha') && !contains(github.event.push.ref, 'beta') && !contains(github.event.push.ref, 'rc') }}
5959
6060
- name: Set up Docker Buildx
61-
uses: docker/setup-buildx-action@v4
61+
uses: docker/setup-buildx-action@v4.1.0
6262

6363
- name: Build
6464
id: docker_build
65-
uses: docker/build-push-action@v7
65+
uses: docker/build-push-action@v7.2.0
6666
with:
6767
push: false
6868
tags: ${{ steps.docker_meta.outputs.tags }}
@@ -73,7 +73,7 @@ jobs:
7373
run: echo ${{ steps.docker_build.outputs.digest }}
7474

7575
- name: Upload artifact
76-
uses: actions/upload-artifact@v7
76+
uses: actions/upload-artifact@v7.0.1
7777
with:
7878
name: image
7979
path: /tmp/image.tar
@@ -120,12 +120,12 @@ jobs:
120120
--user root
121121
122122
steps:
123-
- uses: actions/checkout@v6
123+
- uses: actions/checkout@v6.0.3
124124
- uses: pnpm/action-setup@v6.0.8
125125
with:
126126
version: 11.6.0
127127

128-
- uses: actions/setup-node@v6
128+
- uses: actions/setup-node@v6.4.0
129129
with:
130130
node-version: 24.16.0
131131
cache: pnpm
@@ -137,7 +137,7 @@ jobs:
137137
run: npx playwright install --with-deps
138138

139139
- name: Download artifact
140-
uses: actions/download-artifact@v8
140+
uses: actions/download-artifact@v8.0.1
141141
with:
142142
name: image
143143
path: /tmp
@@ -220,7 +220,7 @@ jobs:
220220
run: docker container logs nginx
221221

222222
- if: ${{ !cancelled() }}
223-
uses: actions/upload-artifact@v7
223+
uses: actions/upload-artifact@v7.0.1
224224
with:
225225
name: blob-report-${{ matrix.queue-config }}-${{ matrix.shard }}
226226
path: blob-report
@@ -232,19 +232,19 @@ jobs:
232232

233233
runs-on: ubuntu-latest
234234
steps:
235-
- uses: actions/checkout@v6
235+
- uses: actions/checkout@v6.0.3
236236
- uses: pnpm/action-setup@v6.0.8
237237
with:
238238
version: 11.6.0
239-
- uses: actions/setup-node@v6
239+
- uses: actions/setup-node@v6.4.0
240240
with:
241241
node-version: 24.16.0
242242
cache: pnpm
243243
- name: Install dependencies
244244
run: pnpm install
245245

246246
- name: Download blob reports from GitHub Actions Artifacts
247-
uses: actions/download-artifact@v8
247+
uses: actions/download-artifact@v8.0.1
248248
continue-on-error: true
249249
with:
250250
path: all-blob-reports
@@ -257,13 +257,13 @@ jobs:
257257

258258
- name: Upload HTML report
259259
if: ${{ hashFiles('playwright-report/**') != '' }}
260-
uses: actions/upload-artifact@v7
260+
uses: actions/upload-artifact@v7.0.1
261261
with:
262262
name: html-report-attempt-${{ github.run_attempt }}
263263
path: playwright-report
264264
retention-days: 30
265265

266-
- uses: daun/playwright-report-summary@v4
266+
- uses: daun/playwright-report-summary@v4.0.0
267267
if: ${{ hashFiles('results.json') != '' }}
268268
with:
269269
report-file: results.json

0 commit comments

Comments
 (0)