Skip to content

Commit

Permalink
chore(deps): bump the github-actions-dependencies group across 2 dire…
Browse files Browse the repository at this point in the history
…ctories with 2 updates

Bumps the github-actions-dependencies group with 1 update in the / directory: [github/codeql-action](https://github.com/github/codeql-action).
Bumps the github-actions-dependencies group with 1 update in the /actions/dependencies-cache directory: [actions/cache](https://github.com/actions/cache).


Updates `github/codeql-action` from 3.26.12 to 3.26.13
- [Release notes](https://github.com/github/codeql-action/releases)
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- [Commits](github/codeql-action@v3.26.12...v3.26.13)

Updates `actions/cache` from 4.0.2 to 4.1.1
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](actions/cache@v4.0.2...v4.1.1)

---
updated-dependencies:
- dependency-name: github/codeql-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: github-actions-dependencies
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: github-actions-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored and neilime committed Oct 18, 2024
1 parent fa86815 commit 2c5f400
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
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

0 comments on commit 2c5f400

Please sign in to comment.