Skip to content

Commit

Permalink
Update github action scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaioru committed Dec 10, 2024
1 parent db86b18 commit 1c8e731
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ jobs:
name: ubuntu-latest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: 'Cache: .nuke/temp, ~/.nuget/packages'
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
.nuke/temp
Expand All @@ -36,7 +36,7 @@ jobs:
- name: 'Run: Pack'
run: ./build.cmd Pack
- name: 'Publish: packages'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: packages
path: artifacts/packages
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ jobs:
name: ubuntu-latest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: 'Cache: .nuke/temp, ~/.nuget/packages'
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
.nuke/temp
Expand All @@ -36,7 +36,7 @@ jobs:
- name: 'Run: Publish'
run: ./build.cmd Publish
- name: 'Publish: dist'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: dist
path: artifacts/dist

0 comments on commit 1c8e731

Please sign in to comment.