Skip to content

Commit 5a98c43

Browse files
committed
Ensure unique name for qhelp artifact
1 parent 967e8af commit 5a98c43

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

go/actions/test/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ runs:
1717
using: composite
1818
steps:
1919
- name: Set up Go ${{ inputs.go-test-version }}
20+
id: setup-go
2021
uses: actions/setup-go@v5
2122
with:
2223
go-version: ${{ inputs.go-test-version }}
2324
cache: false
24-
id: go
2525

2626
- name: Set up CodeQL CLI
2727
uses: ./.github/actions/fetch-codeql
@@ -65,7 +65,7 @@ runs:
6565
if: inputs.run-code-checks == 'true' && !cancelled()
6666
uses: actions/upload-artifact@v4
6767
with:
68-
name: qhelp-markdown
68+
name: qhelp-markdown-${{ steps.setup-go.outputs.go-version }}
6969
path: go/qhelp-out/**/*.md
7070

7171
- name: Cache compilation cache

0 commit comments

Comments
 (0)