Skip to content

Commit

Permalink
workflow: bump all actions
Browse files Browse the repository at this point in the history
  • Loading branch information
lifehackerhansol committed May 12, 2024
1 parent 93c0c78 commit 6bd0f24
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
current_date: ${{ steps.vars.outputs.current_date }}
steps:
- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup environment
run: git config --global safe.directory '*'
- name: Make application
Expand All @@ -45,7 +45,7 @@ jobs:
CURRENT_DATE=$(date +"%Y%m%d-%H%M%S")
echo "current_date=$CURRENT_DATE" >> $GITHUB_OUTPUT
- name: Publish build to GH Actions
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
path: dsbf_dump.nds
name: dsbf_dump-nightly
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
current_date: ${{ steps.vars.outputs.current_date }}
steps:
- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup environment
run: git config --global safe.directory '*'
- name: Make application
Expand All @@ -40,12 +40,12 @@ jobs:
CURRENT_DATE=$(date +"%Y%m%d-%H%M%S")
echo "current_date=$CURRENT_DATE" >> $GITHUB_OUTPUT
- name: Publish build to GH Actions
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
path: dsbf_dump.nds
name: dsbf_dump-nightly
- name: Release
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
Expand Down

0 comments on commit 6bd0f24

Please sign in to comment.