Skip to content

Commit c8ce727

Browse files
fix(COD-4320): update @actions/artifact to version 2.3.2 (#219)
1 parent cb87425 commit c8ce727

File tree

6 files changed

+3332
-3620
lines changed

6 files changed

+3332
-3620
lines changed

.github/workflows/integration-test.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ jobs:
4444
target: push
4545
sources: ${{ github.workspace }}
4646
debug: true
47+
artifact-prefix: ${{ matrix.os }}
4748
- name: Check run succeeded
4849
env:
4950
RUN_OUTPUT: ${{ steps.run-action.outputs.push-completed }}
@@ -55,9 +56,9 @@ jobs:
5556
exit 1
5657
fi
5758
- name: Download results
58-
uses: actions/download-artifact@v3
59+
uses: actions/download-artifact@v4
5960
with:
60-
name: results-push
61+
name: ${{ matrix.os }}-results-push
6162
path: artifact
6263
- name: Check results
6364
working-directory: artifact

action.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@ inputs:
2323
description: 'Show vulnerabilities found in transitive dependencies'
2424
required: false
2525
default: false
26+
artifact-prefix:
27+
description: 'Prefix for the artifact name'
28+
required: false
29+
default: ''
2630
outputs:
2731
old-completed:
2832
description: 'If running a target called old, whether the analysis for this was completed'
@@ -92,3 +96,4 @@ runs:
9296
token: '${{ inputs.token || github.token }}'
9397
footer: '${{ inputs.footer }}'
9498
eval-indirect-dependencies: '${{ inputs.eval-indirect-dependencies }}'
99+
artifact-prefix: '${{ inputs.artifact-prefix }}'

0 commit comments

Comments
 (0)