From 3217924db105ade089434cb3ec3b07edbd798064 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 24 Jul 2026 01:43:30 +0000 Subject: [PATCH] deps: bump the actions group with 3 updates Bumps the actions group with 3 updates: [actions/checkout](https://github.com/actions/checkout), [dorny/paths-filter](https://github.com/dorny/paths-filter) and [actions/labeler](https://github.com/actions/labeler). Updates `actions/checkout` from 6.0.3 to 7.0.1 - [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.0.3...v7.0.1) Updates `dorny/paths-filter` from 4.0.1 to 4.0.2 - [Release notes](https://github.com/dorny/paths-filter/releases) - [Changelog](https://github.com/dorny/paths-filter/blob/master/CHANGELOG.md) - [Commits](https://github.com/dorny/paths-filter/compare/fbd0ab8f3e69293af611ebaee6363fc25e6d187d...7b450fff21473bca461d4b92ce414b9d0420d706) Updates `actions/labeler` from 6 to 7 - [Release notes](https://github.com/actions/labeler/releases) - [Commits](https://github.com/actions/labeler/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 7.0.1 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: dorny/paths-filter dependency-version: 4.0.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: actions/labeler dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 14 +++++++------- .github/workflows/copilot-setup-steps.yml | 2 +- .github/workflows/coverage.yml | 2 +- .github/workflows/labeler.yml | 2 +- .github/workflows/publish.yml | 8 ++++---- .github/workflows/release.yml | 2 +- .github/workflows/version.yml | 2 +- 7 files changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index cb1392e4..ce209fac 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,12 +18,12 @@ jobs: test-folders: ["library-tests", "queries-tests"] steps: - name: "Checkout" - uses: actions/checkout@v6.0.3 + uses: actions/checkout@v7.0.1 with: submodules: true - name: "Check for changes" - uses: dorny/paths-filter@fbd0ab8f3e69293af611ebaee6363fc25e6d187d # v4.0.1 + uses: dorny/paths-filter@7b450fff21473bca461d4b92ce414b9d0420d706 # v4.0.2 id: extractor-changes with: filters: | @@ -83,18 +83,18 @@ jobs: # steps: # - name: "Checkout" - # uses: actions/checkout@v6.0.3 + # uses: actions/checkout@v7.0.1 # with: # submodules: true # - name: "Checkout" - # uses: actions/checkout@v6.0.3 + # uses: actions/checkout@v7.0.1 # with: # repository: ${{ matrix.project }} # path: project # - name: "Check for changes" - # uses: dorny/paths-filter@fbd0ab8f3e69293af611ebaee6363fc25e6d187d # v4.0.1 + # uses: dorny/paths-filter@7b450fff21473bca461d4b92ce414b9d0420d706 # v4.0.2 # id: extractor-changes # with: # filters: | @@ -151,8 +151,8 @@ jobs: docs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6.0.3 - - uses: dorny/paths-filter@fbd0ab8f3e69293af611ebaee6363fc25e6d187d # v4.0.1 + - uses: actions/checkout@v7.0.1 + - uses: dorny/paths-filter@7b450fff21473bca461d4b92ce414b9d0420d706 # v4.0.2 id: changes with: filters: | diff --git a/.github/workflows/copilot-setup-steps.yml b/.github/workflows/copilot-setup-steps.yml index 15696e6e..823feba2 100644 --- a/.github/workflows/copilot-setup-steps.yml +++ b/.github/workflows/copilot-setup-steps.yml @@ -31,7 +31,7 @@ jobs: # starts. If you do not check out your code, Copilot will do this for you. steps: - name: Checkout code - uses: actions/checkout@v6.0.3 + uses: actions/checkout@v7.0.1 with: submodules: true diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 636da2bb..fdefe0d2 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -13,7 +13,7 @@ jobs: actions: write steps: - - uses: actions/checkout@v6.0.3 + - uses: actions/checkout@v7.0.1 - name: "Run Coverage Report" if: github.ref == 'refs/heads/main' diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml index 3f725ce2..f2995a26 100644 --- a/.github/workflows/labeler.yml +++ b/.github/workflows/labeler.yml @@ -17,7 +17,7 @@ jobs: pull-requests: write steps: - - uses: actions/labeler@v6 + - uses: actions/labeler@v7 with: repo-token: "${{ secrets.GITHUB_TOKEN }}" diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 6d765cce..89fba9af 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -16,7 +16,7 @@ jobs: release: ${{ steps.get_version.outputs.release }} version: ${{ steps.get_version.outputs.version }} steps: - - uses: actions/checkout@v6.0.3 + - uses: actions/checkout@v7.0.1 - name: "Check release version" id: get_version @@ -53,7 +53,7 @@ jobs: if: ${{ needs.release-check.outputs.release == 'true' }} steps: - name: "Checkout" - uses: actions/checkout@v6.0.3 + uses: actions/checkout@v7.0.1 with: submodules: true @@ -81,7 +81,7 @@ jobs: steps: - name: "Checkout" - uses: actions/checkout@v6.0.3 + uses: actions/checkout@v7.0.1 with: submodules: true @@ -115,7 +115,7 @@ jobs: steps: - name: "Checkout" - uses: actions/checkout@v6.0.3 + uses: actions/checkout@v7.0.1 - name: "Check and Publish CodeQL Packs" env: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index afe641be..619b5ba5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,7 +20,7 @@ jobs: runs-on: ubuntu-latest steps: - name: "Checkout" - uses: actions/checkout@v6.0.3 + uses: actions/checkout@v7.0.1 - name: "Patch Release Me" uses: 42ByteLabs/patch-release-me@04ea0a696abfc3cfbdfadb279bd9c9dd0b1652a2 # 0.6.6 diff --git a/.github/workflows/version.yml b/.github/workflows/version.yml index adfea13a..2cb7e4b6 100644 --- a/.github/workflows/version.yml +++ b/.github/workflows/version.yml @@ -16,7 +16,7 @@ jobs: steps: - name: "Checkout" - uses: actions/checkout@v6.0.3 + uses: actions/checkout@v7.0.1 - name: Get Token id: get_workflow_token