From 2a48b34386033eb8e986dd0da456b2a78eec3338 Mon Sep 17 00:00:00 2001 From: Chris Thrasher Date: Tue, 20 Feb 2024 12:47:35 -0700 Subject: [PATCH] Upgrade CI actions to fix deprecation warnings --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 11cfc695e..82c66514d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -123,7 +123,7 @@ jobs: # In addition to installing a known working version of CCache, this action also takes care of saving and restoring the cache for us # Additionally it outputs information at the end of each job that helps us to verify if the cache is working properly - name: Setup CCache - uses: hendrikmuhs/ccache-action@v1.2.10 + uses: hendrikmuhs/ccache-action@v1.2.12 with: verbose: 2 key: ${{ matrix.platform.name }}-${{ matrix.config.name }}-${{ matrix.type.name }} @@ -131,13 +131,13 @@ jobs: - name: Cache OpenCppCoverage if: matrix.type.name == 'Debug' && runner.os == 'Windows' id: opencppcoverage-cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: C:\Program Files\OpenCppCoverage key: opencppcoverage - name: Install OpenCppCoverage - uses: nick-fields/retry@v2 + uses: nick-fields/retry@v3 if: matrix.type.name == 'Debug' && runner.os == 'Windows' && steps.opencppcoverage-cache.outputs.cache-hit != 'true' with: max_attempts: 10 @@ -147,7 +147,7 @@ jobs: - name: Cache MinGW if: matrix.platform.name == 'Windows MinGW' id: mingw-cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: "C:\\Program Files\\mingw64" key: winlibs-x86_64-posix-seh-gcc-12.2.0-llvm-16.0.0-mingw-w64msvcrt-10.0.0-r5 @@ -220,7 +220,7 @@ jobs: - name: Upload Coverage Report to Codecov if: matrix.type.name == 'Debug' && github.repository == 'SFML/SFML' # Disable upload in forks - uses: nick-fields/retry@v2 + uses: nick-fields/retry@v3 with: timeout_seconds: 30 max_attempts: 10