Skip to content

Commit a9227cc

Browse files
Pin dependencies
1 parent 3d2cbdf commit a9227cc

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/anchore.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -35,18 +35,18 @@ jobs:
3535
runs-on: ubuntu-latest
3636
steps:
3737
- name: Checkout the code
38-
uses: actions/checkout@v3
38+
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
3939
- name: Build the Docker image
4040
run: docker build . --file ${{ env.DOCKERFILE }} --tag localbuild/testimage:latest
4141
- name: Run the Anchore scan action itself with GitHub Advanced Security code scanning integration enabled
42-
uses: anchore/scan-action@v3
42+
uses: anchore/scan-action@3343887d815d7b07465f6fdcd395bd66508d486a # v3
4343
with:
4444
image: "localbuild/testimage:latest"
4545
acs-report-enable: true
4646
fail-build: true
4747
severity-cutoff: "high"
4848
- name: Upload Anchore Scan Report
49-
uses: github/codeql-action/upload-sarif@v2
49+
uses: github/codeql-action/upload-sarif@d97ba04b39135f37e9d60c84a6995bb18b7ac328 # v2
5050
if: always()
5151
with:
5252
sarif_file: results.sarif

.github/workflows/pr-title.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
steps:
1515
# Please look up the latest version from
1616
# https://github.com/amannn/action-semantic-pull-request/releases
17-
- uses: amannn/[email protected]
17+
- uses: amannn/action-semantic-pull-request@7bfb19c48fc334d3dacb072cf982e81535041209 # v3.4.6
1818
env:
1919
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2020
with:

.github/workflows/release.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
steps:
1919
- name: Checkout
2020
id: checkout
21-
uses: actions/checkout@v2
21+
uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2
2222
with:
2323
persist-credentials: false
2424
fetch-depth: 0
@@ -37,7 +37,7 @@ jobs:
3737
- name: Log in to the Container registry
3838
id: docker_login
3939
if: steps.release.outputs.new_release_published == 'true'
40-
uses: docker/login-action@v2
40+
uses: docker/login-action@465a07811f14bebb1938fbed4728c6a1ff8901fc # v2
4141
with:
4242
registry: ghcr.io
4343
username: ${{ github.actor }}
@@ -46,7 +46,7 @@ jobs:
4646
- name: Build and push Docker image
4747
id: docker_build_push
4848
if: steps.release.outputs.new_release_published == 'true'
49-
uses: docker/build-push-action@v3
49+
uses: docker/build-push-action@1104d471370f9806843c095c1db02b5a90c5f8b6 # v3
5050
with:
5151
context: .
5252
push: true

0 commit comments

Comments
 (0)