From 1f256e29dcf1596b73b74156065074df6a76079f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Jun 2026 01:33:00 +0000 Subject: [PATCH] build(deps): bump the github-actions group across 1 directory with 2 updates Bumps the github-actions group with 2 updates in the / directory: [actions/checkout](https://github.com/actions/checkout) and [actions/cache](https://github.com/actions/cache). 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 `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) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/composer-version-guard.yml | 2 +- .github/workflows/release.yml | 4 ++-- .github/workflows/test.yaml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/composer-version-guard.yml b/.github/workflows/composer-version-guard.yml index 75d8060..45c5526 100644 --- a/.github/workflows/composer-version-guard.yml +++ b/.github/workflows/composer-version-guard.yml @@ -24,7 +24,7 @@ jobs: steps: - name: Checkout (current PR head) - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Ensure jq and gh are available run: | diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d72c465..aec2c14 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,7 +14,7 @@ jobs: environment: Netlogix Release Bot steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: persist-credentials: false - name: Create GitHub App token @@ -50,7 +50,7 @@ jobs: private-key: ${{ secrets.RELEASE_BOT_PRIVATE_KEY }} - name: Checkout (full history) - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 token: ${{ steps.release-bot-app-token.outputs.token }} diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index a44a3d0..afb1938 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -25,7 +25,7 @@ jobs: - { php: 8.5 } steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Setup PHP uses: shivammathur/setup-php@v2 @@ -33,7 +33,7 @@ jobs: php-version: ${{ matrix.env.php }} - name: Cache dependencies - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: vendor key: composer-${{ runner.os }}-${{ matrix.env.php }}-${{ hashFiles('composer.*') }}