Skip to content

Commit

Permalink
Update external actions (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
hiimjustin000 authored Jun 21, 2024
1 parent 5c6ddb2 commit 881943b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Build the mod
uses: ./
with:
sdk: nightly
# sdk: nightly
build-config: RelWithDebInfo
path: textureldr
combine: true
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ runs:
- name: Upload artifacts
if: ${{ inputs.combine }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: "geode-build-${{ steps.platform.outputs.target_id }}"
path: |
Expand Down
12 changes: 6 additions & 6 deletions combine/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ runs:
using: composite
steps:
- name: Download CLI
uses: robinraju/release-downloader@v1.8
uses: robinraju/release-downloader@v1.10
with:
repository: geode-sdk/cli
latest: ${{ inputs.cli == 'latest' }}
Expand All @@ -34,7 +34,7 @@ runs:
- run: echo "${{ github.action_path }}" >> $GITHUB_PATH
shell: bash

- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
path: "${{ github.action_path }}/artifacts"

Expand Down Expand Up @@ -75,25 +75,25 @@ runs:
fi
echo "output=$(realpath out)" >> $GITHUB_OUTPUT
- uses: geekyeggo/delete-artifact@v2
- uses: geekyeggo/delete-artifact@v5
if: ${{ inputs.delete-artifacts }}
with:
name: geode-build-win
failOnError: false

- uses: geekyeggo/delete-artifact@v2
- uses: geekyeggo/delete-artifact@v5
if: ${{ inputs.delete-artifacts }}
with:
name: geode-build-mac
failOnError: false

- uses: geekyeggo/delete-artifact@v2
- uses: geekyeggo/delete-artifact@v5
if: ${{ inputs.delete-artifacts }}
with:
name: geode-build-android32
failOnError: false

- uses: geekyeggo/delete-artifact@v2
- uses: geekyeggo/delete-artifact@v5
if: ${{ inputs.delete-artifacts }}
with:
name: geode-build-android64
Expand Down

0 comments on commit 881943b

Please sign in to comment.