Skip to content

Commit f8e67d5

Browse files
Bump the github-actions group with 2 updates
Bumps the github-actions group with 2 updates: [actions/checkout](https://github.com/actions/checkout) and [actions/cache](https://github.com/actions/cache). Updates `actions/checkout` from 6 to 7 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v6...v7) Updates `actions/cache` from 5 to 6.1.0 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v5...v6.1.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/cache dependency-version: 6.1.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 3c21741 commit f8e67d5

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
steps:
5656
# https://github.com/actions/checkout
5757
- name: Checkout codebase
58-
uses: actions/checkout@v6
58+
uses: actions/checkout@v7
5959

6060
# https://github.com/actions/setup-node
6161
- name: Install Node.js ${{ matrix.node-version }}
@@ -84,7 +84,7 @@ jobs:
8484
id: npm-cache-dir
8585
run: echo "dir=$(npm config get cache)" >> $GITHUB_OUTPUT
8686
- name: Cache NPM dependencies
87-
uses: actions/cache@v5
87+
uses: actions/cache@v6.1.0
8888
with:
8989
# Cache entire NPM cache directory (see previous step)
9090
path: ${{ steps.npm-cache-dir.outputs.dir }}
@@ -328,7 +328,7 @@ jobs:
328328
runs-on: ubuntu-latest
329329
steps:
330330
- name: Checkout
331-
uses: actions/checkout@v6
331+
uses: actions/checkout@v7
332332

333333
# Download artifacts from previous 'tests' job
334334
- name: Download coverage artifacts

.github/workflows/codescan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
steps:
3636
# https://github.com/actions/checkout
3737
- name: Checkout repository
38-
uses: actions/checkout@v6
38+
uses: actions/checkout@v7
3939

4040
# Initializes the CodeQL tools for scanning.
4141
# https://github.com/github/codeql-action

.github/workflows/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
steps:
8080
# Checkout our codebase (to get access to Docker Compose scripts)
8181
- name: Checkout codebase
82-
uses: actions/checkout@v6
82+
uses: actions/checkout@v7
8383
# Download Docker image artifacts (which were just built by reusable-docker-build.yml)
8484
- name: Download Docker image artifacts
8585
uses: actions/download-artifact@v8

.github/workflows/port_merged_pull_request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
if: github.event.pull_request.merged
2424
steps:
2525
# Checkout code
26-
- uses: actions/checkout@v6
26+
- uses: actions/checkout@v7
2727
# Port PR to other branch (ONLY if labeled with "port to")
2828
# See https://github.com/korthout/backport-action
2929
- name: Create backport pull requests

0 commit comments

Comments
 (0)