Skip to content

Commit ea86ac4

Browse files
renovate[bot]waybackarchiver
authored andcommitted
Update the dependencies of workflows
Update actions/upload-artifact action to v3.1.3 Update step-security/harden-runner action to v2.7.0 Update actions/setup-go action to v4.1.0 Update actions/checkout action to v3.6.0 Update actions/cache action to v4 Update actions/setup-go action to v5 Update actions/checkout action to v4 Update actions/upload-artifact action to v4 ci: upload coverage with a unique name ci: use runner.os instead of matrix.os
1 parent ecaba89 commit ea86ac4

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/testing.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,24 +32,24 @@ jobs:
3232
go: ["1.18", "1.19", "1.20", "1.21", "1.22" ]
3333
steps:
3434
- name: Harden Runner
35-
uses: step-security/harden-runner@1f99358870fe1c846a3ccba386cc2b2246836776 # v2.2.1
35+
uses: step-security/harden-runner@63c24ba6bd7ba022e95695ff85de572c04a18142 # v2.7.0
3636
with:
3737
egress-policy: audit
3838
disable-telemetry: true
3939

4040
- name: Set up Go ${{ matrix.go }}
41-
uses: actions/setup-go@4d34df0c2316fe8122ab82dc22947d607c0c91f9 # v4.0.0
41+
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
4242
with:
4343
go-version: ${{ matrix.go }}
4444

4545
- name: Check out code into the Go module directory
46-
uses: actions/checkout@24cb9080177205b6e8c946b17badbe402adc938f # v3.4.0
46+
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
4747
with:
4848
persist-credentials: false
4949
fetch-depth: 0
5050

5151
- name: Cache go module
52-
uses: actions/cache@9b0c1fce7a93df8e3bb8926b0d6e9d89e92f20a7 # v3.0.11
52+
uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
5353
with:
5454
path: |
5555
~/.cache/go-build
@@ -71,9 +71,9 @@ jobs:
7171
make test-cover
7272
7373
- name: Upload coverage
74-
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2
74+
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4.3.1
7575
with:
76-
name: coverage
76+
name: coverage-${{ runner.os }}-go-${{ matrix.go }}
7777
path: coverage.*
7878

7979
- name: Run integration test

0 commit comments

Comments
 (0)