diff --git a/.github/actions/godot-cache-restore/action.yml b/.github/actions/godot-cache-restore/action.yml index f10222bf5..660197229 100644 --- a/.github/actions/godot-cache-restore/action.yml +++ b/.github/actions/godot-cache-restore/action.yml @@ -12,7 +12,7 @@ runs: using: composite steps: - name: Restore SCons cache directory - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ inputs.scons-cache }} key: ${{ inputs.cache-name }}-${{ env.GODOT_BASE_BRANCH }}-${{ github.ref }}-${{ github.sha }} diff --git a/.github/actions/godot-cache-save/action.yml b/.github/actions/godot-cache-save/action.yml index df877cec6..6194c4ef5 100644 --- a/.github/actions/godot-cache-save/action.yml +++ b/.github/actions/godot-cache-save/action.yml @@ -12,7 +12,7 @@ runs: using: composite steps: - name: Save SCons cache directory - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 with: path: ${{ inputs.scons-cache }} key: ${{ inputs.cache-name }}-${{ env.GODOT_BASE_BRANCH }}-${{ github.ref }}-${{ github.sha }} diff --git a/.github/actions/setup-godot-cpp/action.yml b/.github/actions/setup-godot-cpp/action.yml index 33f0927fb..cedc5d1de 100644 --- a/.github/actions/setup-godot-cpp/action.yml +++ b/.github/actions/setup-godot-cpp/action.yml @@ -34,7 +34,7 @@ runs: using: composite steps: - name: Setup Python (for SCons) - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: 3.x