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

chore(deps): update actions/upload-artifact action to v4 (17.x) #2118

Closed
Closed
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
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ runs:
tar -I zstd -cf ${{ inputs.key }}.tar.zst sbb-angular
shell: bash
- name: "Bazel: Upload cache artifact"
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ inputs.key }}-artifact
path: ~/.bazel-cache/${{ inputs.key }}.tar.zst
4 changes: 2 additions & 2 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -171,13 +171,13 @@ jobs:
run: mv $(npm pack ./dist/releases/showcase | tail -n 1) sbb-esta-angular-showcase.tgz
- name: "Artifact: Upload showcase merge artifact for pull request"
if: github.event_name == 'pull_request'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: showcase-artifact-${{ github.event.number }}
path: sbb-esta-angular-showcase.tgz
- name: "Artifact: Upload showcase merge artifact for main branch"
if: github.ref == 'refs/heads/main'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: showcase-artifact-main
path: sbb-esta-angular-showcase.tgz
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- name: "Bazel: Build packages"
run: yarn -s build packages

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: packages
path: dist/releases
Expand Down
Loading