diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index e4f5646..3f771ab 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -294,10 +294,10 @@ jobs: runs-on: *ci-runner steps: - uses: hoverkraft-tech/ci-github-common/actions/checkout@b17226e57c8ef31f860719766656ebb6df017218 # 0.31.6 - - uses: github/codeql-action/init@cdefb33c0f6224e58673d9004f47f7cb3e328b89 # v4.31.10 + - uses: github/codeql-action/init@b20883b0cd1f46c72ae0ba6d1090936928f9fa30 # v4.32.0 with: languages: ${{ inputs.code-ql }} - - uses: github/codeql-action/analyze@cdefb33c0f6224e58673d9004f47f7cb3e328b89 # v4.31.10 + - uses: github/codeql-action/analyze@b20883b0cd1f46c72ae0ba6d1090936928f9fa30 # v4.32.0 dependency-review: name: 🛡️ Dependency Review diff --git a/actions/dependencies-cache/action.yml b/actions/dependencies-cache/action.yml index 9bb4fc2..b5ab32e 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@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2 + uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3 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@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2 + uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3 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@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2 + uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3 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@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2 + uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3 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@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2 + uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3 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@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2 + uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3 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@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2 + uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3 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@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2 + uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3 with: path: ${{ steps.jest-cache-dir-path.outputs.dir }} key: ${{ runner.os }}-test-${{ github.sha }}