From 0a75f9c744b9e1d2aa8a8737f738092cffc83160 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 17 Feb 2026 00:20:16 +0000 Subject: [PATCH] chore(ci): bump the github-actions group with 3 updates Bumps the github-actions group with 3 updates: [actions/checkout](https://github.com/actions/checkout), [jdx/mise-action](https://github.com/jdx/mise-action) and [actions/cache](https://github.com/actions/cache). Updates `actions/checkout` from 4 to 6 - [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/v4...v6) Updates `jdx/mise-action` from 2 to 3 - [Release notes](https://github.com/jdx/mise-action/releases) - [Changelog](https://github.com/jdx/mise-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/jdx/mise-action/compare/v2...v3) Updates `actions/cache` from 4 to 5 - [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/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: jdx/mise-action dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/cicd.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index b845be8..d7b1f3f 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -21,10 +21,10 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Setup mise - uses: jdx/mise-action@v2 + uses: jdx/mise-action@v3 with: cache: true github_token: ${{ secrets.GITHUB_TOKEN }} @@ -39,7 +39,7 @@ jobs: run: pnpm run build - name: Cache dist - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 with: path: website/dist key: build-${{ hashFiles('**/pnpm-lock.yaml', 'website/**', 'src/**', 'scripts/**', 'vite.config.ts') }} @@ -49,10 +49,10 @@ jobs: needs: build steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Setup mise - uses: jdx/mise-action@v2 + uses: jdx/mise-action@v3 with: cache: true github_token: ${{ secrets.GITHUB_TOKEN }} @@ -61,7 +61,7 @@ jobs: run: pnpm install --frozen-lockfile - name: Restore dist cache - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 id: dist-cache with: path: website/dist @@ -90,10 +90,10 @@ jobs: needs: build steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Setup mise - uses: jdx/mise-action@v2 + uses: jdx/mise-action@v3 with: cache: true github_token: ${{ secrets.GITHUB_TOKEN }} @@ -102,7 +102,7 @@ jobs: run: pnpm install --frozen-lockfile - name: Restore dist cache - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 id: dist-cache with: path: website/dist @@ -130,10 +130,10 @@ jobs: if: github.ref == 'refs/heads/main' steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Setup mise - uses: jdx/mise-action@v2 + uses: jdx/mise-action@v3 with: cache: true github_token: ${{ secrets.GITHUB_TOKEN }}