Skip to content

Commit fbf47ea

Browse files
committed
add test for actions/download-artifact@v3-node20 workaround
1 parent d1a79d7 commit fbf47ea

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
on: push
2+
3+
jobs:
4+
test:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: actions/download-artifact@v3-node20
8+
with:
9+
name: my-artifact
10+
id: dl
11+
# This output is missing in action.yml of actions/download-artifact@v3-node20 (#442).
12+
# We added the workaround to add the output in scripts/generate-popular-actions/ script to avoid the issue.
13+
- run: echo ${{ steps.dl.outputs.download-path }}

0 commit comments

Comments
 (0)