diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2022-08-25 13:44:22 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2022-08-25 13:44:22 +0200 |
commit | ef28da8006814d49baead76feb2d2f9d06f0efea (patch) | |
tree | cfccc921a43a53bf2eaf2eab9fefd388b3226af9 /.github/actions | |
parent | c7eb423eeb5455419bb96fc1ed8e8e121c2a619a (diff) |
CI: Bump various GitHub actions to latest versions
actions/cache@v3
actions/checkout@v3
actions/upload-artifact@v3
actions/setup-dotnet@v2
actions/setup-java@v3
actions/setup-python@v4
mymindstorm/setup-emsdk@v11
Also reset cache keys as we're going to cleanup all caches.
Diffstat (limited to '.github/actions')
-rw-r--r-- | .github/actions/godot-deps/action.yml | 2 | ||||
-rw-r--r-- | .github/actions/upload-artifact/action.yml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/actions/godot-deps/action.yml b/.github/actions/godot-deps/action.yml index ee4d7d3751..e99167ff2b 100644 --- a/.github/actions/godot-deps/action.yml +++ b/.github/actions/godot-deps/action.yml @@ -12,7 +12,7 @@ runs: steps: # Use python 3.x release (works cross platform) - name: Set up Python 3.x - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: # Semantic version range syntax or exact version of a Python version python-version: ${{ inputs.python-version }} diff --git a/.github/actions/upload-artifact/action.yml b/.github/actions/upload-artifact/action.yml index bc1871b914..ae0e634cbf 100644 --- a/.github/actions/upload-artifact/action.yml +++ b/.github/actions/upload-artifact/action.yml @@ -12,7 +12,7 @@ runs: using: "composite" steps: - name: Upload Godot Artifact - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: ${{ inputs.name }} path: ${{ inputs.path }} |