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): bump actions/upload-artifact from 4.3.5 to 4.4.3 in /save #17

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
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
- name: Test Save
uses: ./save
with:
path: .github/
path: shared/
# Create a unique key to test intra workflow artifacts.
key: test/stash-${{ matrix.os }}-${{ github.sha }}
retention-days: '1'
Expand All @@ -79,7 +79,7 @@ jobs:
id: test
uses: ./save
with:
path: .github/
path: shared/
# Create a unique key to test intra workflow artifacts.
key: test/stash-${{ matrix.os }}-${{ github.sha }}
retention-days: '1'
Expand Down Expand Up @@ -116,7 +116,7 @@ jobs:
if: ${{ steps.stash.outputs.stash-hit == 'false' }}
uses: ./save
with:
path: .github/
path: shared/
key: test-stash-cross-${{ matrix.os }}
retention-days: '90'

Expand All @@ -135,7 +135,7 @@ jobs:
uses: ./restore
with:
key: test/stash-${{ matrix.os }}-${{ github.sha }}
path: intra/.github/
path: intra/shared/

- shell: bash
run: ls -laR intra
Expand All @@ -144,7 +144,7 @@ jobs:
uses: ./restore
with:
key: test-stash-cross-${{ matrix.os }}
path: inter/.github/
path: inter/shared/

- shell: bash
run: ls -laR inter/
2 changes: 1 addition & 1 deletion save/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ runs:

- name: Upload Stash
id: upload
uses: actions/upload-artifact@89ef406dd8d7e03cfd12d9e0a4a378f454709029 # v4.3.5
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
with:
name: ${{ steps.mung.outputs.stash_name }}
path: ${{ inputs.path }}
Expand Down
Loading