From 4caea6e0f6097afd9d176b34d8702068a87b80e2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 28 Jun 2026 13:53:07 +0000 Subject: [PATCH] chore(deps): bump the ci-dependencies group across 1 directory with 4 updates Bumps the ci-dependencies group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/cache](https://github.com/actions/cache), [actions/upload-pages-artifact](https://github.com/actions/upload-pages-artifact) and [actions/deploy-pages](https://github.com/actions/deploy-pages). 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) Updates `actions/upload-pages-artifact` from 3 to 5 - [Release notes](https://github.com/actions/upload-pages-artifact/releases) - [Commits](https://github.com/actions/upload-pages-artifact/compare/v3...v5) Updates `actions/deploy-pages` from 4 to 5 - [Release notes](https://github.com/actions/deploy-pages/releases) - [Commits](https://github.com/actions/deploy-pages/compare/v4...v5) --- 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 - dependency-name: actions/upload-pages-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci-dependencies - dependency-name: actions/deploy-pages dependency-version: '5' 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/deploy.yaml | 10 +++++----- .github/workflows/docker-build-push.yaml | 2 +- 5 files changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/workflows/build-preview.yaml b/.github/workflows/build-preview.yaml index 7406f9b..36eef56 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-v2-${{ hashFiles('quartz.lock.json') }} diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 3648b72..b156030 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-v2-${{ 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 2049a38..666fdbf 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-v2-${{ hashFiles('quartz.lock.json') }} diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 6c23ad9..21209c0 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -18,21 +18,21 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 # Fetch all history for git info - uses: actions/setup-node@v6 with: 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') }} restore-keys: | ${{ runner.os }}-node- - name: Cache Quartz plugins - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: .quartz/plugins key: ${{ runner.os }}-plugins-v2-${{ hashFiles('quartz.lock.json') }} @@ -45,7 +45,7 @@ jobs: - name: Build Quartz run: npx quartz build - name: Upload artifact - uses: actions/upload-pages-artifact@v3 + uses: actions/upload-pages-artifact@v5 with: path: public @@ -58,4 +58,4 @@ jobs: steps: - name: Deploy to GitHub Pages id: deployment - uses: actions/deploy-pages@v4 + uses: actions/deploy-pages@v5 diff --git a/.github/workflows/docker-build-push.yaml b/.github/workflows/docker-build-push.yaml index dc346cb..e594079 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