Skip to content

Commit 000856e

Browse files
chore(deps): pin dependencies (#1657)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent a845fad commit 000856e

File tree

9 files changed

+16
-16
lines changed

9 files changed

+16
-16
lines changed

.github/workflows/4v_deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
github.event.inputs.build_latest_as_test == 'false' ||
6363
github.event.inputs.build_latest_as_test == ''
6464
needs: get_build_number
65-
uses: sdr-enthusiasts/common-github-workflows/.github/workflows/sdre.yml@main
65+
uses: sdr-enthusiasts/common-github-workflows/.github/workflows/sdre.yml@226b2948a95ef5a19b6c1b2e1aaf12a645c5f382 # main
6666
with:
6767
push_enabled: true
6868
push_destinations: ghcr.io

.github/workflows/4v_deploy_bleeding_edge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
github.event.inputs.build_latest_as_test == 'false' ||
6363
github.event.inputs.build_latest_as_test == ''
6464
needs: get_build_number
65-
uses: sdr-enthusiasts/common-github-workflows/.github/workflows/sdre.yml@main
65+
uses: sdr-enthusiasts/common-github-workflows/.github/workflows/sdre.yml@226b2948a95ef5a19b6c1b2e1aaf12a645c5f382 # main
6666
with:
6767
push_enabled: true
6868
push_destinations: ghcr.io

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
github.event.inputs.build_latest_as_test == 'false' ||
7070
github.event.inputs.build_latest_as_test == ''
7171
needs: get_version
72-
uses: sdr-enthusiasts/common-github-workflows/.github/workflows/sdre.yml@main
72+
uses: sdr-enthusiasts/common-github-workflows/.github/workflows/sdre.yml@226b2948a95ef5a19b6c1b2e1aaf12a645c5f382 # main
7373
with:
7474
push_enabled: true
7575
push_destinations: ghcr.io
@@ -89,7 +89,7 @@ jobs:
8989
if: |
9090
github.event.inputs.build_latest_as_test == 'true' &&
9191
(github.event.inputs.use_test_image == 'false' || github.event.inputs.use_test_image == '')
92-
uses: sdr-enthusiasts/common-github-workflows/.github/workflows/sdre.yml@main
92+
uses: sdr-enthusiasts/common-github-workflows/.github/workflows/sdre.yml@226b2948a95ef5a19b6c1b2e1aaf12a645c5f382 # main
9393
needs: get_version
9494
with:
9595
push_enabled: true

.github/workflows/e2e.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ jobs:
1717
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
1818

1919
- name: Install just
20-
uses: extractions/setup-just@v2
20+
uses: extractions/setup-just@dd310ad5a97d8e7b41793f8ef055398d51ad4de6 # v2
2121

2222
- name: Run E2E tests (Docker Playwright — Chromium, Firefox, WebKit, Mobile)
2323
run: just test-e2e-docker
2424

2525
- name: Upload Playwright report
26-
uses: actions/upload-artifact@v4
26+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
2727
if: failure()
2828
with:
2929
name: playwright-report

.github/workflows/fullstack-e2e.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,10 @@ jobs:
4646

4747
steps:
4848
- name: Checkout repository
49-
uses: actions/checkout@v4
49+
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
5050

5151
- name: Set up Node.js
52-
uses: actions/setup-node@v4
52+
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
5353
with:
5454
node-version: "22"
5555
cache: "npm"
@@ -100,7 +100,7 @@ jobs:
100100
run: docker compose -f docker-compose.test.yml down --volumes --timeout 5
101101

102102
- name: Upload Playwright report on failure
103-
uses: actions/upload-artifact@v4
103+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
104104
if: failure()
105105
with:
106106
name: integration-playwright-report

.github/workflows/test-build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@ jobs:
2121

2222
steps:
2323
- name: Checkout
24-
uses: actions/checkout@v4
24+
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
2525
with:
2626
fetch-depth: 0
2727

2828
- name: Set up Docker Buildx
29-
uses: docker/setup-buildx-action@v3
29+
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3
3030

3131
- name: Build Docker Image
32-
uses: docker/build-push-action@v6
32+
uses: docker/build-push-action@10e90e3645eae34f1e60eeb005ba3a3d33f178e8 # v6
3333
with:
3434
context: .
3535
platforms: ${{ matrix.platform }}

Dockerfile.e2e

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# Or via justfile:
1616
# just test-e2e-docker
1717
# ============================================================
18-
FROM mcr.microsoft.com/playwright:v1.58.2-noble
18+
FROM mcr.microsoft.com/playwright:v1.58.2-noble@sha256:6446946a1d9fd62d9ae501312a2d76a43ee688542b21622056a372959b65d63d
1919

2020
WORKDIR /work
2121

docker-compose-testing-example.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
services:
22
# Nginx reverse proxy for testing subpath deployment
33
nginx:
4-
image: nginx:alpine
4+
image: nginx:alpine@sha256:e7257f1ef28ba17cf7c248cb8ccf6f0c6e0228ab9c315c152f9c203cd34cf6d1
55
container_name: acarshub-nginx
66
restart: always
77
ports:

docker-compose.test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ services:
2828
# the RRD → SQLite migration has already been applied (the seed.db already
2929
# contains the pre-migrated timeseries_stats rows).
3030
db-init:
31-
image: alpine:3
31+
image: alpine:3@sha256:25109184c71bdad752c8312a8623239686a9a2071e8825f20acb8f2198c3f659
3232
volumes:
3333
- ./test-fixtures:/src:ro
3434
- acarshub-test-db:/run/acars
@@ -103,7 +103,7 @@ services:
103103
# builds, identical to the `test-e2e-docker` justfile target. Docker reuses
104104
# the volumes on subsequent runs so `npm ci` is fast after the first install.
105105
playwright:
106-
image: mcr.microsoft.com/playwright:v1.58.2-noble
106+
image: mcr.microsoft.com/playwright:v1.58.2-noble@sha256:6446946a1d9fd62d9ae501312a2d76a43ee688542b21622056a372959b65d63d
107107
depends_on:
108108
backend:
109109
condition: service_healthy

0 commit comments

Comments
 (0)