diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-03-06 13:17:00 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-03-06 13:17:00 +0100 |
commit | aa8e9fee6386fab2c4c133f225e8e13a38621e13 (patch) | |
tree | f2f01734ec8011ae76c97043d9c55688325591fa | |
parent | a735c51c3cb3a154275b3b0c1881e06ac5ede3a4 (diff) | |
parent | ad8d3cf1c99e708e8dbb7c9d12daf66793417430 (diff) | |
download | redot-engine-aa8e9fee6386fab2c4c133f225e8e13a38621e13.tar.gz |
Merge pull request #88671 from akien-mga/ci-actions-update
CI: Update actions to latest versions, use default runner .NET version
-rw-r--r-- | .github/actions/download-artifact/action.yml | 2 | ||||
-rw-r--r-- | .github/actions/godot-cache/action.yml | 2 | ||||
-rw-r--r-- | .github/actions/godot-deps/action.yml | 2 | ||||
-rw-r--r-- | .github/actions/upload-artifact/action.yml | 2 | ||||
-rw-r--r-- | .github/workflows/android_builds.yml | 2 | ||||
-rw-r--r-- | .github/workflows/linux_builds.yml | 6 |
6 files changed, 5 insertions, 11 deletions
diff --git a/.github/actions/download-artifact/action.yml b/.github/actions/download-artifact/action.yml index 58c2aa9060..534b3251c5 100644 --- a/.github/actions/download-artifact/action.yml +++ b/.github/actions/download-artifact/action.yml @@ -12,7 +12,7 @@ runs: using: "composite" steps: - name: Download Godot Artifact - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: ${{ inputs.name }} path: ${{ inputs.path }} diff --git a/.github/actions/godot-cache/action.yml b/.github/actions/godot-cache/action.yml index 09ad2099cc..b7ca01bb47 100644 --- a/.github/actions/godot-cache/action.yml +++ b/.github/actions/godot-cache/action.yml @@ -12,7 +12,7 @@ runs: steps: # Upload cache on completion and check it out now - name: Load .scons_cache directory - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{inputs.scons-cache}} key: ${{inputs.cache-name}}-${{env.GODOT_BASE_BRANCH}}-${{github.ref}}-${{github.sha}} diff --git a/.github/actions/godot-deps/action.yml b/.github/actions/godot-deps/action.yml index 38731db5d6..881eb7d1f6 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@v4 + uses: actions/setup-python@v5 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 ae0e634cbf..8033839a7c 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@v3 + uses: actions/upload-artifact@v4 with: name: ${{ inputs.name }} path: ${{ inputs.path }} diff --git a/.github/workflows/android_builds.yml b/.github/workflows/android_builds.yml index 495f643e56..68e5575b3b 100644 --- a/.github/workflows/android_builds.yml +++ b/.github/workflows/android_builds.yml @@ -21,7 +21,7 @@ jobs: - uses: actions/checkout@v4 - name: Set up Java 17 - uses: actions/setup-java@v3 + uses: actions/setup-java@v4 with: distribution: temurin java-version: 17 diff --git a/.github/workflows/linux_builds.yml b/.github/workflows/linux_builds.yml index e3cd03d279..4cc6d92fb8 100644 --- a/.github/workflows/linux_builds.yml +++ b/.github/workflows/linux_builds.yml @@ -116,12 +116,6 @@ jobs: - name: Setup python and scons uses: ./.github/actions/godot-deps - - name: Set up .NET Sdk - uses: actions/setup-dotnet@v3 - if: ${{ matrix.build-mono }} - with: - dotnet-version: '6.0.x' - - name: Setup GCC problem matcher uses: ammaraskar/gcc-problem-matcher@master |