From e846d4ba7979627d1080946d2fb388d0e6f2027a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Jul 2026 12:57:36 +0000 Subject: [PATCH] Bump the actions-deps group with 5 updates Bumps the actions-deps group with 5 updates: | Package | From | To | | --- | --- | --- | | [sorenlouv/backport-github-action](https://github.com/sorenlouv/backport-github-action) | `12.0.0` | `12.0.4` | | [actions/checkout](https://github.com/actions/checkout) | `6` | `7` | | [msys2/setup-msys2](https://github.com/msys2/setup-msys2) | `2.31.1` | `2.32.0` | | [actions/cache](https://github.com/actions/cache) | `5` | `6` | | [codecov/codecov-action](https://github.com/codecov/codecov-action) | `6` | `7` | Updates `sorenlouv/backport-github-action` from 12.0.0 to 12.0.4 - [Release notes](https://github.com/sorenlouv/backport-github-action/releases) - [Commits](https://github.com/sorenlouv/backport-github-action/compare/v12.0.0...v12.0.4) Updates `actions/checkout` from 6 to 7 - [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/v6...v7) Updates `msys2/setup-msys2` from 2.31.1 to 2.32.0 - [Release notes](https://github.com/msys2/setup-msys2/releases) - [Changelog](https://github.com/msys2/setup-msys2/blob/main/CHANGELOG.md) - [Commits](https://github.com/msys2/setup-msys2/compare/v2.31.1...v2.32.0) Updates `actions/cache` from 5 to 6 - [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/v5...v6) Updates `codecov/codecov-action` from 6 to 7 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v6...v7) --- updated-dependencies: - dependency-name: sorenlouv/backport-github-action dependency-version: 12.0.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions-deps - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-deps - dependency-name: msys2/setup-msys2 dependency-version: 2.32.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions-deps - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-deps - dependency-name: codecov/codecov-action dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-deps ... Signed-off-by: dependabot[bot] --- .github/workflows/backport.yml | 2 +- .github/workflows/ci.yml | 10 +++++----- .github/workflows/publish.yml | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/backport.yml b/.github/workflows/backport.yml index 863ad2c..87d7df8 100644 --- a/.github/workflows/backport.yml +++ b/.github/workflows/backport.yml @@ -25,7 +25,7 @@ jobs: echo "matched=$matched" >> $GITHUB_OUTPUT - name: Backport Action if: fromJSON(steps.check_labels.outputs.matched) > 0 - uses: sorenlouv/backport-github-action@v12.0.0 + uses: sorenlouv/backport-github-action@v12.0.4 with: github_token: ${{ secrets.GITHUB_TOKEN }} auto_backport_label_prefix: backport-to- diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c4dfa12..9ab4348 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,7 +31,7 @@ jobs: env: MACOSX_DEPLOYMENT_TARGET: 10.15 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - run: | sudo apt update sudo apt install autoconf-archive lcov texlive @@ -40,7 +40,7 @@ jobs: if: matrix.os == 'macos-15' - run: brew install automake autoconf-archive lcov texinfo if: ${{ startsWith(matrix.os, 'macos') }} - - uses: msys2/setup-msys2@v2.31.1 + - uses: msys2/setup-msys2@v2.32.0 name: Setup msys2 with: install: >- @@ -59,7 +59,7 @@ jobs: if: ${{ startsWith(matrix.os, 'windows') }} - name: Cache GNU GMP builds id: cache-gmp - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: .local key: ${{ matrix.os }}-${{ hashFiles('scripts/*') }} @@ -87,7 +87,7 @@ jobs: needs: - tests steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 - run: sudo apt update @@ -108,7 +108,7 @@ jobs: path: | coverage/ coverage*.info - - uses: codecov/codecov-action@v6 + - uses: codecov/codecov-action@v7 with: token: ${{ secrets.CODECOV_TOKEN }} gcov_include: '*.c' diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 85f9d91..c1f9a36 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -9,7 +9,7 @@ jobs: if: startsWith(github.ref, 'refs/tags/') runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - run: sudo apt update - run: sudo apt install autoconf-archive texlive - run: mkdir m4 && autoreconf -if