Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump the github-actions-dependencies group across 2 directories with 2 updates #149

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,10 @@ jobs:
runs-on: "ubuntu-latest"
steps:
- uses: hoverkraft-tech/ci-github-common/actions/[email protected]
- uses: github/codeql-action/[email protected].12
- uses: github/codeql-action/[email protected].13
with:
languages: ${{ inputs.code-ql }}
- uses: github/codeql-action/[email protected].12
- uses: github/codeql-action/[email protected].13

dependency-review:
name: 🛡️ Dependency Review
Expand Down
10 changes: 5 additions & 5 deletions actions/dependencies-cache/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ runs:

- name: ♻️ NX cache
if: fromJson(steps.has-installed-dependencies.outputs.installed-dependencies).nx == true
uses: actions/cache@v4.0.2
uses: actions/cache@v4.1.1
with:
path: node_modules/.cache/nx
key: ${{ runner.os }}-cache-nx-${{ github.sha }}
Expand All @@ -38,7 +38,7 @@ runs:

- name: ♻️ Prettier cache
if: fromJson(steps.has-installed-dependencies.outputs.installed-dependencies).prettier == true
uses: actions/cache@v4.0.2
uses: actions/cache@v4.1.1
with:
path: node_modules/.cache/prettier
key: ${{ runner.os }}-cache-prettier-${{ github.sha }}
Expand All @@ -47,7 +47,7 @@ runs:

- name: ♻️ Gatsby cache
if: fromJson(steps.has-installed-dependencies.outputs.installed-dependencies).gatsby == true
uses: actions/cache@v4.0.2
uses: actions/cache@v4.1.1
with:
path: |
.cache
Expand All @@ -58,7 +58,7 @@ runs:

- name: ♻️ Storybook cache
if: fromJson(steps.has-installed-dependencies.outputs.installed-dependencies).storybook == true
uses: actions/cache@v4.0.2
uses: actions/cache@v4.1.1
with:
path: node_modules/.cache/storybook
key: ${{ runner.os }}-cache-storybook-${{ github.sha }}
Expand All @@ -75,7 +75,7 @@ runs:

- name: ♻️ Test cache
if: steps.jest-cache-dir-path.outputs.dir
uses: actions/cache@v4.0.2
uses: actions/cache@v4.1.1
with:
path: ${{ steps.jest-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-test-${{ github.sha }}
Expand Down
Loading