Skip to content

Commit bfd0580

Browse files
committed
make run id required
1 parent f0b4f0a commit bfd0580

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/assertion.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
runId:
1111
description: 'Run ID of the workflow that built the artifacts'
1212
type: string
13-
required: false
13+
required: true
1414
signAssertion:
1515
description: 'Sign and store the assertion document'
1616
type: boolean
@@ -68,10 +68,10 @@ jobs:
6868
if: ${{ inputs.runId != '' }}
6969
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # 6.0.0
7070
with:
71-
run-id: ${{ inputs.runId }}
72-
github-token: ${{ github.token }}
7371
name: nginx-agent-binaries-${{ inputs.packageVersion }}-${{ matrix.osarch }}
7472
path: binaries
73+
run-id: ${{ inputs.runId }}
74+
github-token: ${{ github.token }}
7575

7676
- name: Gather build dependencies
7777
id: godeps

.github/workflows/release-branch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ defaults:
5454
shell: bash
5555

5656
concurrency:
57-
group: ${{ github.ref_name }}-v3-release
57+
group: ${{ github.ref_name }}-release
5858
cancel-in-progress: true
5959

6060
permissions:

0 commit comments

Comments
 (0)