Skip to content

Commit

Permalink
Bump actions/upload-artifact from 4.4.3 to 4.5.0
Browse files Browse the repository at this point in the history
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4.4.3 to 4.5.0.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](actions/upload-artifact@v4.4.3...v4.5.0)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Dec 23, 2024
1 parent 812f723 commit 237a14e
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/auto-review-prepare.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Create artifact folder
run: mkdir -p pr_diff && mv pr_number.txt pr_files_diff.txt pr_diff/
- name: Upload PR details as artifact
uses: actions/upload-artifact@v4.4.3
uses: actions/upload-artifact@v4.5.0
with:
name: pr-diff
retention-days: 1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
STAGING: 1
- name: Upload web assets
if: github.ref == 'refs/heads/main'
uses: actions/upload-artifact@v4.4.3
uses: actions/upload-artifact@v4.5.0
with:
name: web-client-assets-${{ github.sha }}
retention-days: 1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/preview-close.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Save PR number
run: echo "${{ github.event.pull_request.number }}" > ./preview-id
- name: Save data for another workflow
uses: actions/upload-artifact@v4.4.3
uses: actions/upload-artifact@v4.5.0
with:
name: preview-id
retention-days: 1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/preview-prepare.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Create archive to keep symlinks
run: tar -cf server.tar server/dist/
- name: Save server for deploy
uses: actions/upload-artifact@v4.4.3
uses: actions/upload-artifact@v4.5.0
with:
name: preview-server
retention-days: 1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/proxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
- name: Create archive to keep symlinks
run: tar -cf proxy.tar proxy/dist/
- name: Upload proxy build
uses: actions/upload-artifact@v4.4.3
uses: actions/upload-artifact@v4.5.0
with:
name: proxy-build-${{ github.sha }}
retention-days: 1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
- name: Create archive to keep symlinks
run: tar -cf server.tar server/dist/
- name: Upload server build
uses: actions/upload-artifact@v4.4.3
uses: actions/upload-artifact@v4.5.0
with:
name: server-build-${{ github.sha }}
retention-days: 1
Expand Down

0 comments on commit 237a14e

Please sign in to comment.