Skip to content

Commit 4e38eb8

Browse files
Merge branch 'main' into pr/david-a-wheeler/1250
Signed-off-by: Spencer Schrock <[email protected]>
2 parents 1197f33 + 15cd9b9 commit 4e38eb8

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ jobs:
3535

3636
steps:
3737
- name: Checkout repository
38-
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v2
38+
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v2
3939

4040
# Initializes the CodeQL tools for scanning.
4141
- name: Initialize CodeQL
42-
uses: github/codeql-action/init@a09933a12a80f87b87005513f0abb1494c27a716 # v2.1.11
42+
uses: github/codeql-action/init@00e563ead9f72a8461b24876bee2d0c2e8bd2ee8 # v2.1.11
4343
with:
4444
languages: ${{ matrix.language }}
4545
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -50,7 +50,7 @@ jobs:
5050
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
5151
# If this step fails, then you should remove it and run the build manually (see below)
5252
- name: Autobuild
53-
uses: github/codeql-action/autobuild@a09933a12a80f87b87005513f0abb1494c27a716 # v2.1.11
53+
uses: github/codeql-action/autobuild@00e563ead9f72a8461b24876bee2d0c2e8bd2ee8 # v2.1.11
5454

5555
# ℹ️ Command-line programs to run using the OS shell.
5656
# 📚 https://git.io/JvXDl
@@ -64,4 +64,4 @@ jobs:
6464
# make release
6565

6666
- name: Perform CodeQL Analysis
67-
uses: github/codeql-action/analyze@a09933a12a80f87b87005513f0abb1494c27a716 # v2.1.11
67+
uses: github/codeql-action/analyze@00e563ead9f72a8461b24876bee2d0c2e8bd2ee8 # v2.1.11

.github/workflows/dependency-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,6 @@ jobs:
3636
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
3737

3838
- name: 'Checkout Repository'
39-
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9
39+
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac
4040
- name: 'Dependency Review'
4141
uses: actions/dependency-review-action@f6fff72a3217f580d5afd49a46826795305b63c7

.github/workflows/docker-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ jobs:
1313
runs-on: ubuntu-latest
1414

1515
steps:
16-
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9
16+
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac
1717
- name: Build the Docker image
1818
run: docker build . --file Dockerfile

.github/workflows/golangci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
matrix:
1717
os: [ ubuntu-latest ]
1818
steps:
19-
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
19+
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
2020
- uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
2121
with:
2222
go-version-file: go.mod

.github/workflows/scorecards.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
steps:
1818
- name: "Checkout code"
19-
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.1.0
19+
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v3.1.0
2020
with:
2121
persist-credentials: false
2222

@@ -39,6 +39,6 @@ jobs:
3939

4040
# Upload the results to GitHub's code scanning dashboard.
4141
- name: "Upload to code-scanning"
42-
uses: github/codeql-action/upload-sarif@a09933a12a80f87b87005513f0abb1494c27a716 # v2.1.27
42+
uses: github/codeql-action/upload-sarif@00e563ead9f72a8461b24876bee2d0c2e8bd2ee8 # v2.1.27
4343
with:
4444
sarif_file: results.sarif

.github/workflows/tests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
permissions:
1818
id-token: write # Needed to pick up on signing with a GitHub workflow identity.
1919
steps:
20-
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
20+
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
2121
- uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
2222
with:
2323
go-version-file: go.mod
@@ -38,7 +38,7 @@ jobs:
3838
matrix:
3939
os: [ ubuntu-latest ]
4040
steps:
41-
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
41+
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
4242
- uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
4343
with:
4444
go-version-file: go.mod

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ ARG TARGETARCH
3636
RUN CGO_ENABLED=0 make build
3737

3838
# Need root for GitHub Actions support
39-
FROM gcr.io/distroless/base@sha256:73deaaf6a207c1a33850257ba74e0f196bc418636cada9943a03d7abea980d6d
39+
FROM gcr.io/distroless/base@sha256:46c5b9bd3e3efff512e28350766b54355fce6337a0b44ba3f822ab918eca4520
4040
COPY --from=build /src/scorecard-action /
4141
COPY policies/template.yml /policy.yml
4242
ENTRYPOINT [ "/scorecard-action" ]

0 commit comments

Comments
 (0)