diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5e91faa944..8a6bbcf460 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,7 +28,7 @@ jobs: standard: [ c++20 ] suite: [ github_ci_block_1, github_ci_block_2 ] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: fetch-depth: '0' - name: Set TOOLSET @@ -86,7 +86,7 @@ jobs: compiler: [ g++-13, clang++-19 ] standard: [ c++14, c++17, c++20, c++23 ] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: fetch-depth: '0' - name: Set TOOLSET @@ -145,7 +145,7 @@ jobs: standard: [ 14, 17, 20 ] suite: [ github_ci_block_1, github_ci_block_2 ] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: fetch-depth: '0' - name: Checkout main boost @@ -188,7 +188,7 @@ jobs: standard: [ 14 ] suite: [ github_ci_block_1, github_ci_block_2 ] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: fetch-depth: '0' - name: Checkout main boost @@ -231,7 +231,7 @@ jobs: standard: [ 14, 17, latest ] suite: [ github_ci_block_1, github_ci_block_2 ] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: fetch-depth: '0' - name: Checkout main boost @@ -271,7 +271,7 @@ jobs: env: TOOLSET: gcc steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: fetch-depth: '0' - name: Install Cygwin @@ -305,7 +305,7 @@ jobs: matrix: compiler: [ g++-13 ] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: fetch-depth: '0' - name: Add repository @@ -345,7 +345,7 @@ jobs: matrix: compiler: [ clang++-19 ] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: fetch-depth: '0' - name: Add repository @@ -387,7 +387,7 @@ jobs: standard: [ c++14, c++17, c++20, c++23 ] suite: [ github_ci_block_1, github_ci_block_2 ] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: fetch-depth: '0' - name: Set TOOLSET @@ -448,7 +448,7 @@ jobs: runs-on: ${{matrix.os}} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Install packages if: matrix.install @@ -498,7 +498,7 @@ jobs: runs-on: ${{matrix.os}} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Use library with add_subdirectory (header-only) run: | @@ -520,7 +520,7 @@ jobs: runs-on: ${{matrix.os}} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Setup Boost run: | @@ -561,7 +561,7 @@ jobs: runs-on: ${{matrix.os}} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Setup Boost run: | @@ -613,7 +613,7 @@ jobs: runs-on: ${{matrix.os}} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Setup Boost run: | @@ -665,7 +665,7 @@ jobs: runs-on: ${{matrix.os}} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Setup Boost run: | @@ -733,7 +733,7 @@ jobs: printenv >> $GITHUB_ENV - name: checkout project code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Install Packages run: | @@ -791,7 +791,7 @@ jobs: echo "Installed cuda version is: ${{steps.cuda-toolkit.outputs.cuda}}"+ echo "Cuda install location: ${{steps.cuda-toolkit.outputs.CUDA_PATH}}" nvcc -V - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Install Packages run: | diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml index 6c76d1f238..f867c38311 100644 --- a/.github/workflows/codecov.yml +++ b/.github/workflows/codecov.yml @@ -92,7 +92,7 @@ jobs: fi git config --global pack.threads 0 - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: # For coverage builds fetch the whole history, else only 1 commit using a 'fake ternary' fetch-depth: ${{ matrix.coverage && '0' || '1' }} @@ -106,7 +106,7 @@ jobs: restore-keys: ${{matrix.os}}-${{matrix.container}}-${{matrix.compiler}}- - name: Fetch Boost.CI - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: repository: boostorg/boost-ci ref: master