From 29ec3789ece73b2e6d052c0b91a667b3196d764b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 20:40:56 +0000 Subject: [PATCH] chore(deps): bump the ci-dependencies group with 2 updates Bumps the ci-dependencies group with 2 updates: [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: ci-dependencies - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci-dependencies ... Signed-off-by: dependabot[bot] --- .github/workflows/build-preview.yaml | 6 +++--- .github/workflows/ci.yaml | 8 ++++---- .github/workflows/deploy-v5.yaml | 6 +++--- .github/workflows/docker-build-push.yaml | 2 +- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/build-preview.yaml b/.github/workflows/build-preview.yaml index da726c74..340de3bb 100644 --- a/.github/workflows/build-preview.yaml +++ b/.github/workflows/build-preview.yaml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest name: Build Preview steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 @@ -21,7 +21,7 @@ jobs: node-version: 22 - name: Cache dependencies - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.npm key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} @@ -29,7 +29,7 @@ jobs: ${{ runner.os }}-node- - name: Cache Quartz plugins - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: .quartz/plugins key: ${{ runner.os }}-plugins-${{ hashFiles('quartz.lock.json') }} diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 62e31d7a..4ef78e10 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -19,7 +19,7 @@ jobs: permissions: contents: write steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 @@ -29,7 +29,7 @@ jobs: node-version: 24 - name: Cache dependencies - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.npm key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} @@ -37,7 +37,7 @@ jobs: ${{ runner.os }}-node- - name: Cache Quartz plugins - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: .quartz/plugins key: ${{ runner.os }}-plugins-${{ hashFiles('quartz.lock.json') }} @@ -64,7 +64,7 @@ jobs: permissions: contents: write steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 - name: Setup Node diff --git a/.github/workflows/deploy-v5.yaml b/.github/workflows/deploy-v5.yaml index 5f2fb2ea..655b2aa6 100644 --- a/.github/workflows/deploy-v5.yaml +++ b/.github/workflows/deploy-v5.yaml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest name: Deploy v5 to Cloudflare Pages steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 @@ -26,7 +26,7 @@ jobs: node-version: 24 - name: Cache dependencies - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.npm key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} @@ -34,7 +34,7 @@ jobs: ${{ runner.os }}-node- - name: Cache Quartz plugins - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: .quartz/plugins key: ${{ runner.os }}-plugins-${{ hashFiles('quartz.lock.json') }} diff --git a/.github/workflows/docker-build-push.yaml b/.github/workflows/docker-build-push.yaml index dc346cb6..e5940790 100644 --- a/.github/workflows/docker-build-push.yaml +++ b/.github/workflows/docker-build-push.yaml @@ -21,7 +21,7 @@ jobs: echo "OWNER_LOWERCASE=${OWNER,,}" >> ${GITHUB_ENV} env: OWNER: "${{ github.repository_owner }}" - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 1 - name: Inject slug/short variables