diff --git a/.github/workflows/continuous.yml b/.github/workflows/continuous.yml index 16b61bbd..b15e64d3 100644 --- a/.github/workflows/continuous.yml +++ b/.github/workflows/continuous.yml @@ -29,7 +29,7 @@ jobs: name: Linux steps: - name: Checkout repository - uses: actions/checkout@v4.1.6 + uses: actions/checkout@v6 with: fetch-depth: 10 @@ -54,7 +54,7 @@ jobs: - name: Cache Build id: cache-build - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ env.CACHE_PATH }} key: ${{ runner.os }}-${{ matrix.config }}-cache-${{ github.sha }} @@ -93,20 +93,17 @@ jobs: config: [Debug, Release] steps: - name: Checkout repository - uses: actions/checkout@v4.1.6 + uses: actions/checkout@v6 with: fetch-depth: 10 - - name: Install Ninja - uses: seanmiddleditch/gha-setup-ninja@master - - name: Set env run: | echo "appdata=$env:LOCALAPPDATA" >> ${env:GITHUB_ENV} - name: Cache build id: cache-build - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ env.appdata }}\Mozilla\sccache key: ${{ runner.os }}-${{ matrix.config }}-cache-${{ github.sha }} diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index ba40ccb9..8cd29bc8 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -23,7 +23,7 @@ jobs: name: Linux steps: - name: Checkout repository - uses: actions/checkout@v4.1.6 + uses: actions/checkout@v6 with: fetch-depth: 10 @@ -41,7 +41,7 @@ jobs: - name: Cache Build id: cache-build - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ env.CACHE_PATH }} key: ${{ runner.os }}-Release-${{ matrix.threading }}-cache-${{ github.sha }} @@ -72,7 +72,7 @@ jobs: lcov --remove coverage.info '/usr/*' "${HOME}"'/.cache/*' '*tests/*.cpp' '*tests/*.h' --output-file coverage.info - name: Upload Coverage - uses: codecov/codecov-action@v4 + uses: codecov/codecov-action@v6 env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} with: