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 3 updates

Bumps the github-actions-dependencies group with 2 updates in the / directory: [github/codeql-action](https://github.com/github/codeql-action) and [codecov/codecov-action](https://github.com/codecov/codecov-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.27.5 to 3.27.6
- [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.27.5...v3.27.6)

Updates `codecov/codecov-action` from 5.0.7 to 5.1.1
- [Release notes](https://github.com/codecov/codecov-action/releases)
- [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md)
- [Commits](codecov/codecov-action@v5.0.7...v5.1.1)

Updates `actions/cache` from 4.1.2 to 4.2.0
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](actions/cache@v4.1.2...v4.2.0)

---
updated-dependencies:
- dependency-name: github/codeql-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: github-actions-dependencies
- dependency-name: codecov/codecov-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
  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 Dec 6, 2024
1 parent 6b88472 commit cc6f532
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 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].5
- uses: github/codeql-action/[email protected].6
with:
languages: ${{ inputs.code-ql }}
- uses: github/codeql-action/[email protected].5
- uses: github/codeql-action/[email protected].6

dependency-review:
name: 🛡️ Dependency Review
Expand Down Expand Up @@ -287,6 +287,6 @@ jobs:

- name: 📊 Code coverage
if: inputs.coverage == 'codecov'
uses: codecov/codecov-action@v5.0.7
uses: codecov/codecov-action@v5.1.1
with:
use_oidc: true
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.1.2
uses: actions/cache@v4.2.0
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.1.2
uses: actions/cache@v4.2.0
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.1.2
uses: actions/cache@v4.2.0
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.1.2
uses: actions/cache@v4.2.0
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.1.2
uses: actions/cache@v4.2.0
with:
path: ${{ steps.jest-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-test-${{ github.sha }}
Expand Down

0 comments on commit cc6f532

Please sign in to comment.