Skip to content

Commit

Permalink
Update github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
ps-jay committed Dec 14, 2024
1 parent 55a8a69 commit 599f520
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ runs:
- id: clone
if: inputs.checkout == 'true' && inputs.direction == 'upload'
name: Clone repo ⧉
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: ${{ inputs.checkout-fetch-depth }}

Expand All @@ -115,17 +115,18 @@ runs:
- id: transfer-up
if: inputs.direction == 'upload'
name: Transfer data to GitHub 🆙
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
if-no-files-found: ${{ inputs.if-no-files-found }}
name: ${{ steps.verify.outputs.name }}
path: ${{ steps.verify.outputs.path }}
retention-days: 1
include-hidden-files: true

- id: transfer-down
if: inputs.direction == 'download'
name: Transfer data from GitHub ⬇️
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ steps.verify.outputs.name }}
path: ${{ steps.verify.outputs.path }}
Expand Down

0 comments on commit 599f520

Please sign in to comment.