Skip to content

Commit

Permalink
CI: Updates actions to v4
Browse files Browse the repository at this point in the history
Signed-off-by: Avery King <[email protected]>
  • Loading branch information
Avery King committed Mar 5, 2024
1 parent 6531893 commit f3a04e5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/cmake_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ jobs:
run: echo VCPKG_COMMIT=$(git ls-tree HEAD vcpkg | awk '{print $3}') >> ${GITHUB_ENV}

- name: Setup vcpkg cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
# cache the vcpkg executable to avoid having to bootstrap vcpkg every time
path: |
Expand All @@ -147,7 +147,7 @@ jobs:
${{ matrix.config.name }}-
- name: "Set up compiler cache"
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ matrix.config.compiler_cache_path }}
key: ${{ matrix.config.os }}-${{ matrix.config.arch }}-${{ github.head_ref }}-${{ github.run_number }}
Expand Down Expand Up @@ -200,7 +200,7 @@ jobs:
VCPKG_LIB_PATH: ${{ github.workspace }}/build/vcpkg_installed/x64-linux-dynamic/debug/lib

- name: Upload package artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: tenacity_${{ matrix.config.name }}_${{ github.run_id }}_${{ env.GIT_HASH_SHORT }}
path: |
Expand All @@ -210,7 +210,7 @@ jobs:

- name: Upload artifact of vcpkg build logs
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: vcpkg-logs-${{ runner.os }}
path: ${{ github.workspace }}/vcpkg/buildtrees/**/*.log

0 comments on commit f3a04e5

Please sign in to comment.