Skip to content

Commit

Permalink
Bump GHA dependencies to Node 20
Browse files Browse the repository at this point in the history
Closes #67
  • Loading branch information
Ashton Meuser authored and Ashton Meuser committed May 30, 2024
1 parent 8b1bb36 commit 9d4f36f
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/actions/download-godot/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ runs:
- name: Cache Godot
id: cache-godot
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
${{ github.workspace }}/Godot*.x86_64
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/godot-cpp/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ runs:

- name: Cache Godot Library
id: cache-godot-cpp
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
${{ github.workspace }}/godot-cpp/bin
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/install-deps/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ runs:
libudev-dev libxi-dev libxrandr-dev yasm
- name: Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.10'

Expand Down
2 changes: 1 addition & 1 deletion .github/actions/scons-build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ runs:
run: echo "name=${{ inputs.platform }}-${{ github.workflow }}-${{ inputs.cache-suffix }}" >> $GITHUB_OUTPUT

- name: Cache Scons
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ inputs.scons-cache }}
key: scons-${{ steps.cache-name.outputs.name }}-${{ github.ref }}-${{ github.sha }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/addon.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: recursive

Expand All @@ -47,7 +47,7 @@ jobs:
cache-suffix: ${{ env.GODOT_REF }}

- name: Upload Artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.platform }}
path: ${{ github.workspace }}/${{ env.LIBRARY_PATH }}/${{ matrix.platform }}
Expand All @@ -71,7 +71,7 @@ jobs:
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Download Godot
id: download-godot
Expand Down Expand Up @@ -108,7 +108,7 @@ jobs:
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Download Godot
id: download-godot
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
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@v3
uses: actions/checkout@v4

- name: Clean Binaries
run: rm -rf ${{ github.workspace }}/${{ env.LIBRARY_PATH }}
Expand Down

0 comments on commit 9d4f36f

Please sign in to comment.