From adb0b00ec793ca4ca9ea3661b524f3726c253926 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 12 Jun 2026 03:14:07 +0000 Subject: [PATCH] ci: bump the actions group with 7 updates Bumps the actions group with 7 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `6` | | [actions/setup-python](https://github.com/actions/setup-python) | `5` | `6` | | [actions/cache](https://github.com/actions/cache) | `4` | `5` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `7` | | [Jimver/cuda-toolkit](https://github.com/jimver/cuda-toolkit) | `0.2.19` | `0.2.35` | | [github/codeql-action](https://github.com/github/codeql-action) | `3` | `4` | | [softprops/action-gh-release](https://github.com/softprops/action-gh-release) | `2` | `3` | Updates `actions/checkout` from 4 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v6) Updates `actions/setup-python` from 5 to 6 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v5...v6) Updates `actions/cache` from 4 to 5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v4...v5) Updates `actions/upload-artifact` from 4 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v7) Updates `Jimver/cuda-toolkit` from 0.2.19 to 0.2.35 - [Release notes](https://github.com/jimver/cuda-toolkit/releases) - [Commits](https://github.com/jimver/cuda-toolkit/compare/v0.2.19...v0.2.35) Updates `github/codeql-action` from 3 to 4 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/github/codeql-action/compare/v3...v4) Updates `softprops/action-gh-release` from 2 to 3 - [Release notes](https://github.com/softprops/action-gh-release/releases) - [Changelog](https://github.com/softprops/action-gh-release/blob/master/CHANGELOG.md) - [Commits](https://github.com/softprops/action-gh-release/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: Jimver/cuda-toolkit dependency-version: 0.2.35 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: github/codeql-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: softprops/action-gh-release dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 16 ++++++++-------- .github/workflows/codeql.yml | 6 +++--- .github/workflows/release.yml | 6 +++--- 3 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3dee5be..6f8e95c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,10 +21,10 @@ jobs: runs-on: ubuntu-24.04 timeout-minutes: 10 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: fetch-depth: 0 # need history to diff against the base ref - - uses: actions/setup-python@v5 + - uses: actions/setup-python@v6 with: python-version: '3.12' - run: pip install pre-commit @@ -74,13 +74,13 @@ jobs: CC: ${{ matrix.compiler.cc }} CXX: ${{ matrix.compiler.cxx }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Install toolchain (OpenMP + MPI + Catch2) run: | sudo apt-get update sudo apt-get install -y cmake ninja-build libomp-dev \ openmpi-bin libopenmpi-dev catch2 ccache - - uses: actions/cache@v4 + - uses: actions/cache@v5 with: path: ~/.cache/ccache key: ccache-${{ matrix.compiler.cxx }}-${{ matrix.build_type }}-${{ github.sha }} @@ -101,7 +101,7 @@ jobs: run: ctest --test-dir build --output-on-failure - name: Upload ctest log on failure if: failure() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: ctest-${{ matrix.compiler.cxx }}-${{ matrix.build_type }} path: build/Testing/Temporary/LastTest.log @@ -115,9 +115,9 @@ jobs: runs-on: ubuntu-24.04 timeout-minutes: 30 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Install CUDA toolkit - uses: Jimver/cuda-toolkit@v0.2.19 + uses: Jimver/cuda-toolkit@v0.2.35 with: cuda: '12.5.0' method: network @@ -140,7 +140,7 @@ jobs: timeout-minutes: 30 continue-on-error: true steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Build + run CUDA tests and balance benchmark run: | make -C cuda ARCH=sm_86 diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 9ed5407..999db45 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -24,7 +24,7 @@ jobs: security-events: write # upload results to the Security tab contents: read steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Install build deps run: | @@ -32,7 +32,7 @@ jobs: sudo apt-get install -y cmake ninja-build g++ libopenmpi-dev openmpi-bin libomp-dev - name: Initialize CodeQL - uses: github/codeql-action/init@v3 + uses: github/codeql-action/init@v4 with: languages: c-cpp queries: security-and-quality @@ -45,6 +45,6 @@ jobs: cmake --build build -j - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v3 + uses: github/codeql-action/analyze@v4 with: category: "/language:c-cpp" diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2770c34..f802761 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-24.04 timeout-minutes: 30 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Install toolchain run: | sudo apt-get update @@ -43,7 +43,7 @@ jobs: contents: write # create the GitHub Release packages: write # push the image to GHCR (if built) steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Check for Apptainer definition id: defcheck run: | @@ -56,7 +56,7 @@ jobs: if: steps.defcheck.outputs.have_def == 'true' run: apptainer build "amr-cpu_${GITHUB_SHA::8}.sif" container/amr-cpu.def - name: Create GitHub Release - uses: softprops/action-gh-release@v2 + uses: softprops/action-gh-release@v3 with: generate_release_notes: true files: |