Skip to content

Commit

Permalink
Update deprecated actions
Browse files Browse the repository at this point in the history
  • Loading branch information
joeyparrish committed Jan 7, 2025
1 parent 0ba2a2d commit 17c5f30
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand All @@ -38,7 +38,7 @@ jobs:
- name: Cache Valheim
id: cachevalheim
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: ~/VHINSTALL
key: ${{ steps.valheimversion.outputs.valheimversion }}-${{ hashFiles('**/lockfiles') }}-BepInExPack-${{ steps.bepinexversion.outputs.bepinexversion }}
Expand Down Expand Up @@ -84,15 +84,15 @@ jobs:
run: |
RELEASE_VERSION="${RELEASE_VERSION:-0.0.1}" ./scripts/package.sh
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
# Will result in Pokeheim.zip
name: Pokeheim
# Everything in this folder will be archived, but not the folder
path: staging/

- name: Release
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
files: Pokeheim.zip

0 comments on commit 17c5f30

Please sign in to comment.