From 1c6e0a06e147aa19fc8e34f526ec95bd7f753e1b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jun 2026 09:15:56 +0000 Subject: [PATCH] ci(deps): bump the major-actions group across 1 directory with 4 updates Bumps the major-actions group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [softprops/action-gh-release](https://github.com/softprops/action-gh-release), [actions/dependency-review-action](https://github.com/actions/dependency-review-action) and [actions/upload-pages-artifact](https://github.com/actions/upload-pages-artifact). 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 `softprops/action-gh-release` from 2 to 3 - [Release notes](https://github.com/softprops/action-gh-release/releases) - [Changelog](https://github.com/softprops/action-gh-release/blob/master/CHANGELOG.md) - [Commits](https://github.com/softprops/action-gh-release/compare/v2...v3) Updates `actions/dependency-review-action` from 4 to 5 - [Release notes](https://github.com/actions/dependency-review-action/releases) - [Commits](https://github.com/actions/dependency-review-action/compare/v4...v5) Updates `actions/upload-pages-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-pages-artifact/releases) - [Commits](https://github.com/actions/upload-pages-artifact/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: major-actions - dependency-name: softprops/action-gh-release dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: major-actions - dependency-name: actions/dependency-review-action dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: major-actions - dependency-name: actions/upload-pages-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: major-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/changelog.yml | 4 ++-- .github/workflows/ci.yml | 2 +- .github/workflows/dependency-review.yml | 6 +++--- .github/workflows/deploy.yml | 4 ++-- .github/workflows/release.yml | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/changelog.yml b/.github/workflows/changelog.yml index b6f3504..54ea19d 100644 --- a/.github/workflows/changelog.yml +++ b/.github/workflows/changelog.yml @@ -21,7 +21,7 @@ jobs: steps: - name: ⬇️ Checkout (full history) - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 @@ -114,7 +114,7 @@ jobs: git push origin HEAD:main - name: 🏷️ Create / update GitHub Release with changelog body - uses: softprops/action-gh-release@v2 + uses: softprops/action-gh-release@v3 with: tag_name: ${{ steps.tag.outputs.tag }} name: ${{ steps.tag.outputs.tag }} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4294d23..809267e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: steps: - name: ⬇️ Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: 🟢 Setup Node.js uses: actions/setup-node@v6 diff --git a/.github/workflows/dependency-review.yml b/.github/workflows/dependency-review.yml index 3d14b84..545f635 100644 --- a/.github/workflows/dependency-review.yml +++ b/.github/workflows/dependency-review.yml @@ -18,10 +18,10 @@ jobs: steps: - name: ⬇️ Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: 🔍 Dependency Review - uses: actions/dependency-review-action@v4 + uses: actions/dependency-review-action@v5 with: # Fail on any high/critical vulnerabilities fail-on-severity: high @@ -34,7 +34,7 @@ jobs: steps: - name: ⬇️ Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: 🟢 Setup Node.js uses: actions/setup-node@v6 diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 3e20159..388642d 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -22,7 +22,7 @@ jobs: steps: - name: ⬇️ Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: 🟢 Setup Node.js uses: actions/setup-node@v6 @@ -51,7 +51,7 @@ jobs: uses: actions/configure-pages@v6 - name: 📤 Upload artifact - uses: actions/upload-pages-artifact@v4 + uses: actions/upload-pages-artifact@v5 with: path: './dist' diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 337681c..18bbef7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -26,7 +26,7 @@ jobs: steps: - name: ⬇️ Checkout (full history) - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 token: ${{ secrets.GITHUB_TOKEN }}