Skip to content

Commit 9b635de

Browse files
committed
fix: Update Docker image version reference in pull_request workflow
- Changed `WHOAMI_VERSION` to use the full SHA256 hash instead of a simple version tag. - Adjusted `docker run` command to reference the updated `$WHOAMI_VERSION` variable.
1 parent d7e6dd8 commit 9b635de

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/pull_request.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
DOCKER_HOST: ${{ secrets.DOCKER_HOST }}
3434
run: |
3535
# renovate: datasource=docker depname=traefik/whoami versioning=docker
36-
WHOAMI_VERSION="v1.10"
37-
docker run -d -P --name whoami traefik/whoami:v1.10
36+
WHOAMI_VERSION="43a68d10b9dfcfc3ffbfe4dd42100dc9aeaf29b3a5636c856337a5940f1b4f1c" # v1.10
37+
docker run -d -P --name whoami traefik/whoami:"$WHOAMI_VERSION"
3838
docker stop whoami
3939
docker rm whoami

0 commit comments

Comments
 (0)