Skip to content

Commit

Permalink
bump github actions/download-artifact (#1409)
Browse files Browse the repository at this point in the history
  • Loading branch information
xavpaice authored Dec 20, 2023
1 parent acaa2ed commit 5349316
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/build-test-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
shell: bash
- uses: actions/checkout@v4
- run: make generate preflight
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: preflight
path: bin/preflight
Expand All @@ -106,7 +106,7 @@ jobs:
with:
version: v1.23.6-k3s1
- name: Download preflight binary
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: preflight
path: bin/
Expand Down Expand Up @@ -155,7 +155,7 @@ jobs:
with:
version: v1.23.6-k3s1
- name: Download preflight binary
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: preflight
path: bin/
Expand All @@ -181,7 +181,7 @@ jobs:
shell: bash
- uses: actions/checkout@v4
- run: make generate support-bundle
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: support-bundle
path: bin/support-bundle
Expand All @@ -196,7 +196,7 @@ jobs:
with:
version: v1.23.6-k3s1
- name: Download support-bundle binary
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: support-bundle
path: bin/
Expand All @@ -215,7 +215,7 @@ jobs:
with:
version: v1.23.6-k3s1
- name: Download support bundle binary
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: support-bundle
path: bin/
Expand All @@ -236,7 +236,7 @@ jobs:
shell: bash
- uses: actions/checkout@v4
- name: Download support bundle binary
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: support-bundle
path: bin/
Expand All @@ -256,7 +256,7 @@ jobs:
shell: bash
- uses: actions/checkout@v4
- run: make generate collect
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: collect
path: bin/collect
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/license.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
run: trivy fs --scanners license --skip-dirs ".github" . | tee license-report.txt

- name: Upload license report artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: license-report
path: license-report.txt
Expand Down

0 comments on commit 5349316

Please sign in to comment.