Skip to content

Commit 5dc8c70

Browse files
Merge pull request #207 from smlx/dependabot/github_actions/github-actions-8110fe29c5
chore(deps): bump the github-actions group with 10 updates
2 parents 6aa6020 + a0215f7 commit 5dc8c70

5 files changed

Lines changed: 13 additions & 13 deletions

File tree

.github/workflows/build.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ jobs:
1616
- uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
1717
with:
1818
go-version: stable
19-
- uses: goreleaser/goreleaser-action@9ed2f89a662bf1735a48bc8557fd212fa902bebf # v6.1.0
19+
- uses: goreleaser/goreleaser-action@90a3faa9d0182683851fbfa97ca1a2cb983bfca3 # v6.2.1
2020
id: goreleaser
2121
with:
2222
version: latest
2323
args: build --clean --verbose --single-target --snapshot
2424
- name: tar up binaries
2525
run: tar -cvf dist.tar dist
26-
- uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
26+
- uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
2727
with:
2828
path: dist.tar
2929
build-image:
@@ -41,7 +41,7 @@ jobs:
4141
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
4242
with:
4343
ref: ${{ github.event.pull_request.head.sha }}
44-
- uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
44+
- uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # v4.1.9
4545
- name: untar binaries
4646
run: tar -xvf artifact/dist.tar
4747
- name: Login to GHCR
@@ -54,12 +54,12 @@ jobs:
5454
- name: Get Docker metadata
5555
if: github.actor != 'dependabot[bot]'
5656
id: docker_metadata
57-
uses: docker/metadata-action@369eb591f429131d6889c46b94e711f089e6ca96 # v5.6.1
57+
uses: docker/metadata-action@902fa8ec7d6ecbf8d84d538b9b233a880e428804 # v5.7.0
5858
with:
5959
images: ghcr.io/${{ github.repository }}/${{ matrix.binary }}
6060
- name: Build and push ${{ matrix.binary }} container image
6161
if: github.actor != 'dependabot[bot]'
62-
uses: docker/build-push-action@ca877d9245402d1537745e0e356eab47c3520991 # v6.13.0
62+
uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 # v6.15.0
6363
with:
6464
push: true
6565
tags: ${{ steps.docker_metadata.outputs.tags }}

.github/workflows/coverage.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
run: |
1919
go test -v -covermode=atomic -coverprofile=cover.out -coverpkg=./... ./...
2020
- name: Generage coverage badge
21-
uses: vladopajic/go-test-coverage@604860ea57b67a2351b4b78071943beecb11ac17 # v2.11.4
21+
uses: vladopajic/go-test-coverage@f5435e92b0a4496013d599a34389f4fbd9985a01 # v2.12.1
2222
with:
2323
profile: cover.out
2424
local-prefix: github.com/${{ github.repository }}

.github/workflows/lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
1515
with:
1616
go-version: stable
17-
- uses: golangci/golangci-lint-action@ec5d18412c0aeab7936cb16880d708ba2a64e1ae # v6.2.0
17+
- uses: golangci/golangci-lint-action@2226d7cb06a077cd73e56eedd38eecad18e5d837 # v6.5.0
1818
with:
1919
args: --timeout=180s --enable gocritic
2020
lint-commits:

.github/workflows/ossf-analysis.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
steps:
1717
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1818
- name: Run analysis
19-
uses: ossf/scorecard-action@62b2cac7ed8198b15735ed49ab1e5cf35480ba46 # v2.4.0
19+
uses: ossf/scorecard-action@f49aabe0b5af0936a0987cfb85d86b75731b0186 # v2.4.1
2020
with:
2121
results_file: results.sarif
2222
results_format: sarif
@@ -26,6 +26,6 @@ jobs:
2626
# of the value entered here.
2727
publish_results: true
2828
- name: Upload SARIF results to code scanning
29-
uses: github/codeql-action/upload-sarif@dd746615b3b9d728a6a37ca2045b68ca76d4841a # v3.28.8
29+
uses: github/codeql-action/upload-sarif@b56ba49b26e50535fa1e7f7db0f4f7b4bf65d80d # v3.28.10
3030
with:
3131
sarif_file: results.sarif

.github/workflows/release.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
run: mv "$GITHUB_SBOM_PATH" ./sbom.spdx.json
5353
env:
5454
GITHUB_SBOM_PATH: ${{ steps.sbom.outputs.fileName }}
55-
- uses: goreleaser/goreleaser-action@9ed2f89a662bf1735a48bc8557fd212fa902bebf # v6.1.0
55+
- uses: goreleaser/goreleaser-action@90a3faa9d0182683851fbfa97ca1a2cb983bfca3 # v6.2.1
5656
id: goreleaser
5757
with:
5858
version: latest
@@ -61,7 +61,7 @@ jobs:
6161
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6262
GITHUB_SBOM_PATH: ./sbom.spdx.json
6363
# attest archives
64-
- uses: actions/attest-build-provenance@520d128f165991a6c774bcb264f323e3d70747f4 # v2.2.0
64+
- uses: actions/attest-build-provenance@bd77c077858b8d561b7a36cbe48ef4cc642ca39d # v2.2.2
6565
with:
6666
subject-path: "dist/*.tar.gz"
6767
# parse artifacts to the format required for image attestation
@@ -78,12 +78,12 @@ jobs:
7878
env:
7979
ARTIFACTS: ${{steps.goreleaser.outputs.artifacts}}
8080
# attest images
81-
- uses: actions/attest-build-provenance@520d128f165991a6c774bcb264f323e3d70747f4 # v2.2.0
81+
- uses: actions/attest-build-provenance@bd77c077858b8d561b7a36cbe48ef4cc642ca39d # v2.2.2
8282
with:
8383
subject-digest: ${{steps.image_metadata_go_cli_github.outputs.digest}}
8484
subject-name: ${{steps.image_metadata_go_cli_github.outputs.name}}
8585
push-to-registry: true
86-
- uses: actions/attest-build-provenance@520d128f165991a6c774bcb264f323e3d70747f4 # v2.2.0
86+
- uses: actions/attest-build-provenance@bd77c077858b8d561b7a36cbe48ef4cc642ca39d # v2.2.2
8787
with:
8888
subject-digest: ${{steps.image_metadata_another_binary.outputs.digest}}
8989
subject-name: ${{steps.image_metadata_another_binary.outputs.name}}

0 commit comments

Comments
 (0)