Skip to content

Commit c0da4e4

Browse files
chore(deps): update all-ci-updates
1 parent e1ec9de commit c0da4e4

14 files changed

Lines changed: 24 additions & 24 deletions

File tree

.github/actions/setup-caches/action.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ inputs:
99
runs:
1010
using: composite
1111
steps:
12-
- uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
12+
- uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
1313
with:
1414
path: ~/go/pkg/mod
1515
key: ${{ runner.os }}-go-pkg-mod-${{ hashFiles('**/go.sum') }}-${{ hashFiles('Makefile') }}
16-
- uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
16+
- uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
1717
if: ${{ inputs.build-cache-key }}
1818
with:
1919
path: ~/.cache/go-build

.github/workflows/check-actions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Checkout
1818
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
1919
- name: Ensure SHA pinned actions
20-
uses: zgosalvez/github-actions-ensure-sha-pinned-actions@d5d20e15f2736816ee0e001ba8b24b54d9ffcff4 # v5.0.0
20+
uses: zgosalvez/github-actions-ensure-sha-pinned-actions@471d5ace1f08e3c4df1c4c2f7e6341aa75da434a # v5.0.3
2121
with:
2222
# slsa-github-generator requires using a semver tag for reusable workflows.
2323
# See: https://github.com/slsa-framework/slsa-github-generator#referencing-slsa-builders-and-generators

.github/workflows/coverage.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ jobs:
2727
value: ${{ secrets.FOSSA_API_KEY }}
2828
- name: "Run FOSSA Scan"
2929
if: steps.checksecret.outputs.result == 'true'
30-
uses: fossas/fossa-action@3ebcea1862c6ffbd5cf1b4d0bd6b3fe7bd6f2cac # v1.7.0
30+
uses: fossas/fossa-action@c414b9ad82eaad041e47a7cf62a4f02411f427a0 # v1.8.0
3131
with:
3232
api-key: ${{ secrets.FOSSA_API_KEY }}
3333
- name: "Run FOSSA Test"
3434
if: steps.checksecret.outputs.result == 'true'
35-
uses: fossas/fossa-action@3ebcea1862c6ffbd5cf1b4d0bd6b3fe7bd6f2cac # v1.7.0
35+
uses: fossas/fossa-action@c414b9ad82eaad041e47a7cf62a4f02411f427a0 # v1.8.0
3636
with:
3737
api-key: ${{ secrets.FOSSA_API_KEY }}
3838
run-tests: true
@@ -48,11 +48,11 @@ jobs:
4848
steps:
4949
- name: Checkout Source
5050
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
51-
- uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0
51+
- uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6.3.0
5252
with:
5353
go-version-file: 'go.mod'
5454
- name: Run Gosec Security Scanner
55-
uses: securego/gosec@424fc4cd9c82ea0fd6bee9cd49c2db2c3cc0c93f # v2.22.11
55+
uses: securego/gosec@223e19b8856e00f02cc67804499a83f77e208f3c # v2.25.0
5656
with:
5757
args: '-no-fail -fmt sarif -out gosec.sarif ./...'
5858
- name: Upload SARIF file
@@ -65,7 +65,7 @@ jobs:
6565
steps:
6666
- name: Checkout
6767
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
68-
- uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0
68+
- uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6.3.0
6969
with:
7070
go-version-file: 'go.mod'
7171
- name: Unit Test
@@ -77,7 +77,7 @@ jobs:
7777
value: ${{ secrets.CODECOV_TOKEN }}
7878
- name: Upload Report to Codecov
7979
if: ${{ steps.checksecret.outputs.result == 'true' }}
80-
uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2
80+
uses: codecov/codecov-action@1af58845a975a7985b0beb0cbe6fbbb71a41dbad # v5.5.3
8181
with:
8282
token: ${{ secrets.CODECOV_TOKEN }}
8383
slug: projectcapsule/capsule

.github/workflows/docker-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: ko build
2929
run: VERSION=${{ github.sha }} make ko-build-all
3030
- name: Trivy Scan Image
31-
uses: aquasecurity/trivy-action@b6643a29fecd7f34b3597bc6acb0a98b03d33ff8 # 0.33.1
31+
uses: aquasecurity/trivy-action@57a97c7e7821a5776cebc9bb87c984fa69cba8f1 # v0.35.0
3232
with:
3333
scan-type: 'fs'
3434
ignore-unfixed: true

.github/workflows/docker-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ jobs:
2828
with:
2929
build-cache-key: publish-images
3030
- name: Run Trivy vulnerability (Repo)
31-
uses: aquasecurity/trivy-action@b6643a29fecd7f34b3597bc6acb0a98b03d33ff8 # 0.33.1
31+
uses: aquasecurity/trivy-action@57a97c7e7821a5776cebc9bb87c984fa69cba8f1 # v0.35.0
3232
with:
3333
scan-type: 'fs'
3434
ignore-unfixed: true
3535
format: 'sarif'
3636
output: 'trivy-results.sarif'
3737
severity: 'CRITICAL,HIGH'
3838
- name: Install Cosign
39-
uses: sigstore/cosign-installer@faadad0cce49287aee09b3a48701e75088a2c6ad # v4.0.0
39+
uses: sigstore/cosign-installer@cad07c2e89fa2edd6e2d7bab4c1aa38e53f76003 # v4.1.1
4040
- name: Publish Capsule
4141
id: publish-capsule
4242
uses: peak-scale/github-actions/make-ko-publish@a441cca016861c546ab7e065277e40ce41a3eb84 # v0.2.0

.github/workflows/e2e.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
with:
3232
fetch-depth: 0
3333

34-
- uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0
34+
- uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6.3.0
3535
with:
3636
go-version-file: 'go.mod'
3737

@@ -57,7 +57,7 @@ jobs:
5757
repository: ${{ github.event.client_payload.repo }}
5858
ref: ${{ github.event.client_payload.sha }}
5959

60-
- uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0
60+
- uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6.3.0
6161
with:
6262
go-version-file: 'go.mod'
6363

.github/workflows/helm-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
chart-digest: ${{ steps.helm_publish.outputs.digest }}
4747
steps:
4848
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
49-
- uses: sigstore/cosign-installer@faadad0cce49287aee09b3a48701e75088a2c6ad # v4.0.0
49+
- uses: sigstore/cosign-installer@cad07c2e89fa2edd6e2d7bab4c1aa38e53f76003 # v4.1.1
5050
- name: "Extract Version"
5151
id: extract_version
5252
run: |

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
1919
with:
2020
fetch-depth: 0
21-
- uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0
21+
- uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6.3.0
2222
with:
2323
go-version-file: 'go.mod'
2424
- name: Generate manifests
@@ -46,7 +46,7 @@ jobs:
4646
runs-on: ubuntu-24.04
4747
steps:
4848
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
49-
- uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0
49+
- uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6.3.0
5050
with:
5151
go-version-file: 'go.mod'
5252
- name: Run golangci-lint

.github/workflows/releaser.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
with:
2323
fetch-depth: 0
2424
- name: Install Go
25-
uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0
25+
uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6.3.0
2626
with:
2727
go-version-file: 'go.mod'
2828
- name: Setup caches
@@ -32,7 +32,7 @@ jobs:
3232
- uses: creekorful/goreportcard-action@1f35ced8cdac2cba28c9a2f2288a16aacfd507f9 # v1.0
3333
- uses: anchore/sbom-action/download-syft@e22c389904149dbc22b58101806040fa8d37a610
3434
- name: Install Cosign
35-
uses: sigstore/cosign-installer@faadad0cce49287aee09b3a48701e75088a2c6ad # v4.0.0
35+
uses: sigstore/cosign-installer@cad07c2e89fa2edd6e2d7bab4c1aa38e53f76003 # v4.1.1
3636
- name: Run GoReleaser
3737
uses: goreleaser/goreleaser-action@e435ccd777264be153ace6237001ef4d979d3a7a # v6.4.0
3838
with:

.github/workflows/scorecard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,6 @@ jobs:
3737
path: results.sarif
3838
retention-days: 5
3939
- name: Upload to code-scanning
40-
uses: github/codeql-action/upload-sarif@6bc82e05fd0ea64601dd4b465378bbcf57de0314 # v4.32.1
40+
uses: github/codeql-action/upload-sarif@38697555549f1db7851b81482ff19f1fa5c4fedc # v4.34.1
4141
with:
4242
sarif_file: results.sarif

0 commit comments

Comments
 (0)