Skip to content

Commit 1231654

Browse files
authored
fix: pin Docker image to versioned tag 3.2.0 (#10)
* fix: pin Docker image to versioned tag 3.2.0 Replaces mutable :latest tag with immutable :3.2.0 for reproducible builds and supply-chain security. The 3.2.0 image includes Verification Context v1.0 output support. * fix: use sha256 digest for immutable image pin, update docs - action.yml: use sha256 digest instead of mutable :3.2.0 tag - CONTRIBUTING.md: reference 3.2.0 instead of latest - SECURITY.md: reference 3.2.0 instead of latest
1 parent 1a36cf9 commit 1231654

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Test locally with Docker (the same image the action runs):
2323
```bash
2424
docker run --rm -e INPUT_ACTION=scan-secrets -e INPUT_PATHS="**/*.env" \
2525
-v "$PWD:/github/workspace" -w /github/workspace \
26-
qwedai/qwed-verification:latest
26+
qwedai/qwed-verification:3.2.0
2727
```
2828

2929
## Release Process

SECURITY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Please include:
2222

2323
## Scope
2424

25-
This action is a thin wrapper over the QWED core image (`docker://qwedai/qwed-verification:latest`). Vulnerabilities in the underlying engines and guards belong to the core repository:
25+
This action is a thin wrapper over the QWED core image (`docker://qwedai/qwed-verification:3.2.0`). Vulnerabilities in the underlying engines and guards belong to the core repository:
2626

2727
https://github.com/QWED-AI/qwed-verification/security
2828

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ outputs:
8787

8888
runs:
8989
using: 'docker'
90-
image: 'docker://qwedai/qwed-verification:latest'
90+
image: 'docker://qwedai/qwed-verification@sha256:be5d26f1ddfb5cba809bad51c629d4c4ed4f4ef0aa2a9b8bd78063ec2e0afdab'
9191
env:
9292
INPUT_API_KEY: ${{ inputs.api_key }}
9393
INPUT_API_URL: ${{ inputs.api_url }}

0 commit comments

Comments
 (0)