Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GitHub Actions: Bump actions/{up,down}load-artifact from 3 to 4 #7166

Merged
Merged
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
6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,12 @@ updates:
labels:
- "area/dependency"
- "kind/task"
groups:
# See https://github.blog/changelog/2023-06-30-grouped-version-updates-for-dependabot-public-beta/
artifact-management-actions:
patterns:
- "actions/upload-artifact"
- "actions/download-artifact"

## Feel free to add other package managers here if needed.
## See https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#package-ecosystem
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-remote-clusters.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
chmod +x ./odo
./odo version
- name: 'Upload odo'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: odo_bin
path: odo
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
- name: Authenticate with IBM Cloud CLI
run: ibmcloud login --apikey "${IBM_CLOUD_API_KEY}" --no-region --quiet
- name: Download odo from previous job
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: odo_bin
- name: Set odo in system path
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
chmod +x ./odo
./odo version
- name: 'Upload odo'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: odo_bin
path: odo
Expand All @@ -65,7 +65,7 @@ jobs:
with:
go-version-file: 'go.mod'
- name: Download odo from previous job
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: odo_bin
- name: Set odo in system path
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
with:
go-version-file: 'go.mod'
- name: Download odo from previous job
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: odo_bin
- name: Set odo in system path
Expand Down Expand Up @@ -138,7 +138,7 @@ jobs:
with:
go-version-file: 'go.mod'
- name: Download odo from previous job
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: odo_bin
- name: Set odo in system path
Expand Down Expand Up @@ -228,7 +228,7 @@ jobs:
with:
go-version-file: 'go.mod'
- name: Download odo from previous job
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: odo_bin
- name: Set odo in system path
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pr-website.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
./odo version

- name: 'Upload odo'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: odo_bin
path: odo
Expand Down Expand Up @@ -108,7 +108,7 @@ jobs:
echo "DEPLOY_INGRESS_DOMAIN=$ingressDomain" >> "$GITHUB_ENV"

- name: Download odo from previous job
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: odo_bin

Expand Down Expand Up @@ -187,7 +187,7 @@ jobs:
ref: ${{ github.event.pull_request.head.sha || github.ref }}

- name: Download odo from previous job
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: odo_bin

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release-management.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
./scripts/changelog-script.sh ${{ steps.get_previous_tag.outputs.prev_tag }} ${TAG_NAME}

- name: Upload Release Notes Artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: release-changelog
path: release-changelog.md
Expand All @@ -54,7 +54,7 @@ jobs:
fetch-depth: 0

- run: mkdir -p /tmp/release-notes
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: release-changelog
path: /tmp/release-notes
Expand All @@ -78,7 +78,7 @@ jobs:
echo "blogFileName=${blogFileName}" >> $GITHUB_OUTPUT

- name: Upload Release Notes Artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: release-blog-post-draft
path: ${{ steps.generate_draft_blog_post.outputs.blogFileName }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ui-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
wait-on-timeout: 180

# after the test run completes, store videos and any screenshots only upon a failure
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: failure()
with:
name: cypress-artifacts
Expand Down
Loading