From 6d1593ffe40d0cb903a0a20dd5428a3b005b990a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 20 Jun 2026 10:10:29 +0000 Subject: [PATCH] CI: Bump the github-actions group across 1 directory with 4 updates Bumps the github-actions group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [codecov/codecov-action](https://github.com/codecov/codecov-action), [msys2/setup-msys2](https://github.com/msys2/setup-msys2) and [github/codeql-action](https://github.com/github/codeql-action). Updates `actions/checkout` from 6 to 6.0.3 - [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...v6.0.3) 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) 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 `github/codeql-action` from 4.36.0 to 4.36.2 - [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/v4.36.0...v4.36.2) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: codecov/codecov-action dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: github/codeql-action dependency-version: 4.36.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: msys2/setup-msys2 dependency-version: 2.32.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/ci-linux.yml | 4 ++-- .github/workflows/ci-linux_asan.yml | 2 +- .github/workflows/ci-macos.yml | 2 +- .github/workflows/ci-windows.yml | 6 +++--- .github/workflows/codeql-analysis.yml | 8 ++++---- .github/workflows/link-check.yml | 2 +- .github/workflows/macvim-buildtest.yaml | 2 +- 7 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/ci-linux.yml b/.github/workflows/ci-linux.yml index d7075e951c..2bd08c452a 100644 --- a/.github/workflows/ci-linux.yml +++ b/.github/workflows/ci-linux.yml @@ -83,7 +83,7 @@ jobs: steps: - name: Checkout repository from GitHub - uses: actions/checkout@v6.0.2 + uses: actions/checkout@v6.0.3 - name: Build timeout-minutes: 15 @@ -170,7 +170,7 @@ jobs: - name: Codecov timeout-minutes: 20 if: matrix.coverage - uses: codecov/codecov-action@v6 + uses: codecov/codecov-action@v7 with: flags: linux,${{ matrix.features }}-${{ matrix.compiler }}-${{ join(matrix.extra, '-') }} token: ${{ secrets.CODECOV_TOKEN }} diff --git a/.github/workflows/ci-linux_asan.yml b/.github/workflows/ci-linux_asan.yml index 84eaca4371..54dcd2dca6 100644 --- a/.github/workflows/ci-linux_asan.yml +++ b/.github/workflows/ci-linux_asan.yml @@ -37,7 +37,7 @@ jobs: steps: - name: Checkout repository from GitHub - uses: actions/checkout@v6.0.2 + uses: actions/checkout@v6.0.3 - name: Build timeout-minutes: 15 diff --git a/.github/workflows/ci-macos.yml b/.github/workflows/ci-macos.yml index 890cedb83c..2ab16012c2 100644 --- a/.github/workflows/ci-macos.yml +++ b/.github/workflows/ci-macos.yml @@ -32,7 +32,7 @@ jobs: steps: - name: Checkout repository from GitHub - uses: actions/checkout@v6.0.2 + uses: actions/checkout@v6.0.3 - name: Install packages if: matrix.features == 'huge' diff --git a/.github/workflows/ci-windows.yml b/.github/workflows/ci-windows.yml index de5d49bcca..013d5142b1 100644 --- a/.github/workflows/ci-windows.yml +++ b/.github/workflows/ci-windows.yml @@ -117,7 +117,7 @@ jobs: echo "SODIUM_DIR=${SODIUM_DIR}" >> $GITHUB_ENV echo "GETTEXT_PATH=D:\gettext${{ matrix.arch == 'x64' && '64' || '32' }}" >> $GITHUB_ENV - - uses: msys2/setup-msys2@v2.31.1 + - uses: msys2/setup-msys2@v2.32.0 if: matrix.toolchain == 'mingw' with: update: true @@ -128,7 +128,7 @@ jobs: release: false - name: Checkout repository from GitHub - uses: actions/checkout@v6.0.2 + uses: actions/checkout@v6.0.3 - name: Create a list of download URLs shell: cmd @@ -355,7 +355,7 @@ jobs: - name: Codecov timeout-minutes: 20 if: matrix.coverage - uses: codecov/codecov-action@v6 + uses: codecov/codecov-action@v7 with: directory: src flags: windows,${{ matrix.toolchain }}-${{ matrix.arch }}-${{ matrix.features }} diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 32c3bcb23a..e5c02fbb9a 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -44,11 +44,11 @@ jobs: steps: - name: Checkout repository from github - uses: actions/checkout@v6.0.2 + uses: actions/checkout@v6.0.3 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL - uses: github/codeql-action/init@v4.36.0 + uses: github/codeql-action/init@v4.36.2 with: languages: ${{ matrix.language }} # If you wish to specify custom queries, you can do so here or in a config file. @@ -59,7 +59,7 @@ jobs: # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). # If this step fails, then you should remove it and run the build manually (see below) - name: Autobuild - uses: github/codeql-action/autobuild@v4.36.0 + uses: github/codeql-action/autobuild@v4.36.2 # â„šī¸ Command-line programs to run using the OS shell. # 📚 https://git.io/JvXDl @@ -73,4 +73,4 @@ jobs: # make release - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v4.36.0 + uses: github/codeql-action/analyze@v4.36.2 diff --git a/.github/workflows/link-check.yml b/.github/workflows/link-check.yml index 664fcb786c..da69554647 100644 --- a/.github/workflows/link-check.yml +++ b/.github/workflows/link-check.yml @@ -8,7 +8,7 @@ jobs: lychee: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6.0.2 + - uses: actions/checkout@v6.0.3 - name: Run Lychee uses: lycheeverse/lychee-action@v2 with: diff --git a/.github/workflows/macvim-buildtest.yaml b/.github/workflows/macvim-buildtest.yaml index 26f62ae81c..610867764a 100644 --- a/.github/workflows/macvim-buildtest.yaml +++ b/.github/workflows/macvim-buildtest.yaml @@ -64,7 +64,7 @@ jobs: runs-on: ${{ inputs.os }} steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v6.0.3 - name: Set up legacy build if: inputs.legacy