Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/auto-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -124,13 +124,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download Chart Artifact
uses: actions/download-artifact@v3.0.2
uses: actions/download-artifact@v7.0.0
with:
name: ${{ needs.release-chart.outputs.artifact }}
path: chart-package/

- name: Download Changelog Artifact
uses: actions/download-artifact@v3.0.2
uses: actions/download-artifact@v7.0.0
with:
name: ${{ needs.release-changelog.outputs.artifact }}
path: changelog-result/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-image-base.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ jobs:
mkdir -p image-digest/

- name: Download digests of all images built
uses: actions/download-artifact@v3.0.2
uses: actions/download-artifact@v7.0.0
with:
path: image-digest/

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/call-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
# download all artifact
# https://github.com/actions/download-artifact#download-all-artifacts
- name: Download images
uses: actions/download-artifact@v3.0.2
uses: actions/download-artifact@v7.0.0
with:
path: output/artifact-${{ inputs.ipfamily }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/call-release-changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ jobs:
ref: ${{ env.DEST_BRANCH }}

- name: Download Artifact
uses: actions/download-artifact@v3.0.2
uses: actions/download-artifact@v7.0.0
with:
name: changelog_artifact
path: ${{ env.DEST_DIRECTORY }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/call-release-chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:
uses: azure/setup-helm@v3.5

- name: Download Chart Artifact
uses: actions/download-artifact@v3.0.2
uses: actions/download-artifact@v7.0.0
with:
name: chart_package_artifact
path: charts
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/call-release-pages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ jobs:

## doc
- name: Download Artifact
uses: actions/download-artifact@v3.0.2
uses: actions/download-artifact@v7.0.0
with:
name: site_artifact

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/call-trivy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
# download all artifact
# https://github.com/actions/download-artifact#download-all-artifacts
- name: Download images
uses: actions/download-artifact@v3.0.2
uses: actions/download-artifact@v7.0.0
with:
path: output/artifact-trivy

Expand Down
Loading