diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index abe6919..254e84a 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -26,7 +26,7 @@ jobs: MSAN_FLAGS: "-fsanitize=memory -fsanitize-memory-track-origins -fno-omit-frame-pointer" steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Install dependencies run: | @@ -60,7 +60,7 @@ jobs: ASAN_FLAGS: "-fsanitize=address -fno-omit-frame-pointer" steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Install dependencies run: | @@ -94,7 +94,7 @@ jobs: UBSAN_FLAGS: "-fsanitize=undefined -fno-omit-frame-pointer" steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Install dependencies run: | @@ -144,14 +144,14 @@ jobs: container: ubuntu:22.04 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: ref: ${{ github.event.pull_request.head.sha }} path: source - name: Setup run: source/scripts/ci/setup/linux.sh - name: Cache CMake build - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: build key: ${{ matrix.os }}-${{ matrix.compiler }}-${{ matrix.buildtype }}-${{ hashFiles('source/CMakeLists.txt', 'source/**/*.cmake') }} @@ -201,7 +201,7 @@ jobs: shell: bash steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: ref: ${{ github.event.pull_request.head.sha }} path: source @@ -212,7 +212,7 @@ jobs: if: ${{ runner.os == 'macOS' }} run: source/scripts/ci/setup/macos.sh - name: Cache CMake build - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: build key: ${{ matrix.jobname }}-${{ matrix.buildtype }}-${{ hashFiles('source/CMakeLists.txt', 'source/**/*.cmake') }} diff --git a/.github/workflows/triggers.yml b/.github/workflows/triggers.yml index 62fe0a0..a62f1d0 100644 --- a/.github/workflows/triggers.yml +++ b/.github/workflows/triggers.yml @@ -12,6 +12,6 @@ jobs: if: ${{ github.event.action == 'completed' }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Post CDash Status run: scripts/ci/scripts/post-cdash-status.sh ${{ github.event.repository.full_name }} ${{ github.event.workflow_run.head_sha }} ${{ secrets.GITHUB_TOKEN }}