Skip to content

Commit 1c0cc21

Browse files
committed
Update GitHub Actions artifact naming to include Go version
1 parent 948c287 commit 1c0cc21

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/workflow.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
steps:
1313
- uses: actions/setup-go@v4
1414
with:
15-
go-version: 1.18
15+
go-version: 1.20
1616
- uses: actions/checkout@v4
1717
- name: golangci-lint
1818
uses: golangci/golangci-lint-action@v3
@@ -23,7 +23,7 @@ jobs:
2323
strategy:
2424
fail-fast: false
2525
matrix:
26-
go-version: ['1.18', '1.19', '1.20', 1.21', '1.22', '1.23', '1.24']
26+
go-version: ['1.20', 1.21', '1.22', '1.23', '1.24']
2727
os: [ubuntu-latest, macos-latest, windows-latest]
2828
env:
2929
OS: ${{ matrix.os }}
@@ -45,7 +45,7 @@ jobs:
4545
- name: Archive code coverage results
4646
uses: actions/upload-artifact@v4
4747
with:
48-
name: code-coverage-report-${{ matrix.os }}
48+
name: code-coverage-report-${{ matrix.os }}-${{ matrix.go-version }}
4949
path: coverage.txt
5050

5151
coverage:

0 commit comments

Comments
 (0)