From 8108f40c084a5f4dee575535669616e7bb4e0353 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 12 Dec 2025 04:04:35 +0000 Subject: [PATCH] chore(deps): bump the github-actions-dependencies group across 2 directories with 2 updates Bumps the github-actions-dependencies group with 1 update in the / directory: [hoverkraft-tech/ci-github-publish/.github/workflows/release-actions.yml](https://github.com/hoverkraft-tech/ci-github-publish). Bumps the github-actions-dependencies group with 1 update in the /actions/dependencies-cache directory: [actions/cache](https://github.com/actions/cache). Updates `hoverkraft-tech/ci-github-publish/.github/workflows/release-actions.yml` from 0.17.3 to 0.18.0 - [Release notes](https://github.com/hoverkraft-tech/ci-github-publish/releases) - [Commits](https://github.com/hoverkraft-tech/ci-github-publish/compare/55f6193fb7a9eaab81f5db18aa0c3400971d87b3...44e0f1bacebf3711bf90895fc45d815e9fe582e8) Updates `actions/cache` from 4.3.0 to 5.0.0 - [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/0057852bfaa89a56745cba8c7296529d2fc39830...a7833574556fa59680c1b7cb190c1735db73ebf0) --- updated-dependencies: - dependency-name: hoverkraft-tech/ci-github-publish/.github/workflows/release-actions.yml dependency-version: 0.18.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions-dependencies - dependency-name: actions/cache dependency-version: 5.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-dependencies ... Signed-off-by: dependabot[bot] --- .github/workflows/__main-ci.yml | 2 +- actions/dependencies-cache/action.yml | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/__main-ci.yml b/.github/workflows/__main-ci.yml index aebafa0..2789543 100644 --- a/.github/workflows/__main-ci.yml +++ b/.github/workflows/__main-ci.yml @@ -35,7 +35,7 @@ jobs: release: needs: ci if: github.event_name != 'schedule' - uses: hoverkraft-tech/ci-github-publish/.github/workflows/release-actions.yml@55f6193fb7a9eaab81f5db18aa0c3400971d87b3 # 0.17.3 + uses: hoverkraft-tech/ci-github-publish/.github/workflows/release-actions.yml@44e0f1bacebf3711bf90895fc45d815e9fe582e8 # 0.18.0 permissions: contents: read with: diff --git a/actions/dependencies-cache/action.yml b/actions/dependencies-cache/action.yml index b2ddf30..fe014d0 100644 --- a/actions/dependencies-cache/action.yml +++ b/actions/dependencies-cache/action.yml @@ -51,7 +51,7 @@ runs: - name: ♻️ NX cache if: fromJson(steps.has-installed-dependencies.outputs.installed-dependencies).nx == true - uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 + uses: actions/cache@a7833574556fa59680c1b7cb190c1735db73ebf0 # v5.0.0 with: path: ${{ inputs.working-directory }}/node_modules/.cache/nx key: ${{ runner.os }}-cache-nx-${{ github.sha }} @@ -60,7 +60,7 @@ runs: - name: ♻️ Prettier cache if: fromJson(steps.has-installed-dependencies.outputs.installed-dependencies).prettier == true - uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 + uses: actions/cache@a7833574556fa59680c1b7cb190c1735db73ebf0 # v5.0.0 with: path: ${{ inputs.working-directory }}/node_modules/.cache/prettier key: ${{ runner.os }}-cache-prettier-${{ github.sha }} @@ -69,7 +69,7 @@ runs: - name: ♻️ Docusaurus cache if: fromJson(steps.has-installed-dependencies.outputs.installed-dependencies).docusaurus == true - uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 + uses: actions/cache@a7833574556fa59680c1b7cb190c1735db73ebf0 # v5.0.0 with: path: | ${{ inputs.working-directory }}/.docusaurus @@ -80,7 +80,7 @@ runs: - name: ♻️ Vitest cache if: fromJson(steps.has-installed-dependencies.outputs.installed-dependencies).vitest == true - uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 + uses: actions/cache@a7833574556fa59680c1b7cb190c1735db73ebf0 # v5.0.0 with: path: ${{ inputs.working-directory }}/node_modules/.vite/vitest key: ${{ runner.os }}-cache-vitest-${{ github.sha }} @@ -89,7 +89,7 @@ runs: - name: ♻️ Astro cache if: fromJson(steps.has-installed-dependencies.outputs.installed-dependencies).astro == true - uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 + uses: actions/cache@a7833574556fa59680c1b7cb190c1735db73ebf0 # v5.0.0 with: path: ${{ inputs.working-directory }}/node_modules/.astro key: ${{ runner.os }}-cache-astro-${{ github.sha }} @@ -98,7 +98,7 @@ runs: - name: ♻️ Gatsby cache if: fromJson(steps.has-installed-dependencies.outputs.installed-dependencies).gatsby == true - uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 + uses: actions/cache@a7833574556fa59680c1b7cb190c1735db73ebf0 # v5.0.0 with: path: | ${{ inputs.working-directory }}/.cache @@ -109,7 +109,7 @@ runs: - name: ♻️ Storybook cache if: fromJson(steps.has-installed-dependencies.outputs.installed-dependencies).storybook == true - uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 + uses: actions/cache@a7833574556fa59680c1b7cb190c1735db73ebf0 # v5.0.0 with: path: ${{ inputs.working-directory }}/node_modules/.cache/storybook key: ${{ runner.os }}-cache-storybook-${{ github.sha }} @@ -196,7 +196,7 @@ runs: - name: ♻️ Test cache if: steps.jest-cache-dir-path.outputs.dir - uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 + uses: actions/cache@a7833574556fa59680c1b7cb190c1735db73ebf0 # v5.0.0 with: path: ${{ steps.jest-cache-dir-path.outputs.dir }} key: ${{ runner.os }}-test-${{ github.sha }}