Skip to content

Commit d9e0a02

Browse files
chore(deps): bump the github-actions group across 1 directory with 5 updates
Bumps the github-actions group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [github/codeql-action/init](https://github.com/github/codeql-action) | `4.36.2` | `4.37.3` | | [github/codeql-action/autobuild](https://github.com/github/codeql-action) | `4.36.2` | `4.37.3` | | [github/codeql-action/analyze](https://github.com/github/codeql-action) | `4.36.2` | `4.37.3` | | [actions/setup-node](https://github.com/actions/setup-node) | `6` | `7` | | [actions/cache](https://github.com/actions/cache) | `5` | `6` | Updates `github/codeql-action/init` from 4.36.2 to 4.37.3 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@8aad20d...e4fba86) Updates `github/codeql-action/autobuild` from 4.36.2 to 4.37.3 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@8aad20d...e4fba86) Updates `github/codeql-action/analyze` from 4.36.2 to 4.37.3 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@8aad20d...e4fba86) Updates `actions/setup-node` from 6 to 7 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](actions/setup-node@v6...v7) Updates `actions/cache` from 5 to 6 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v5...v6) --- updated-dependencies: - dependency-name: github/codeql-action/init dependency-version: 4.37.3 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: github/codeql-action/autobuild dependency-version: 4.37.3 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: github/codeql-action/analyze dependency-version: 4.37.3 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: actions/setup-node dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 7abb1af commit d9e0a02

2 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/codeql.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,15 @@ jobs:
2929
persist-credentials: false
3030

3131
- name: Initialize CodeQL
32-
uses: github/codeql-action/init@8aad20d150bbac5944a9f9d289da16a4b0d87c1e
32+
uses: github/codeql-action/init@e4fba868fa4b1b91e1fdab776edc8cfbe6e9fb81
3333
with:
3434
languages: ${{ matrix.language }}
3535
queries: +security-and-quality
3636

3737
- name: Autobuild
38-
uses: github/codeql-action/autobuild@8aad20d150bbac5944a9f9d289da16a4b0d87c1e
38+
uses: github/codeql-action/autobuild@e4fba868fa4b1b91e1fdab776edc8cfbe6e9fb81
3939

4040
- name: Perform CodeQL Analysis
41-
uses: github/codeql-action/analyze@8aad20d150bbac5944a9f9d289da16a4b0d87c1e
41+
uses: github/codeql-action/analyze@e4fba868fa4b1b91e1fdab776edc8cfbe6e9fb81
4242
with:
4343
category: '/language:${{ matrix.language }}'

.github/workflows/main.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ jobs:
1515
with:
1616
persist-credentials: false
1717

18-
- uses: actions/setup-node@v6
18+
- uses: actions/setup-node@v7
1919
with:
2020
node-version: '18'
2121

2222
- name: cache package-lock.json
23-
uses: actions/cache@v5
23+
uses: actions/cache@v6
2424
with:
2525
path: package-temp-dir
2626
key: lock-${{ github.sha }}
@@ -37,7 +37,7 @@ jobs:
3737
3838
- name: cache node_modules
3939
id: node_modules_cache_id
40-
uses: actions/cache@v5
40+
uses: actions/cache@v6
4141
with:
4242
path: node_modules
4343
key: node_modules-${{ hashFiles('**/package-temp-dir/package-lock.json') }}
@@ -55,13 +55,13 @@ jobs:
5555
persist-credentials: false
5656

5757
- name: restore cache from package-lock.json
58-
uses: actions/cache@v5
58+
uses: actions/cache@v6
5959
with:
6060
path: package-temp-dir
6161
key: lock-${{ github.sha }}
6262

6363
- name: restore cache from node_modules
64-
uses: actions/cache@v5
64+
uses: actions/cache@v6
6565
with:
6666
path: node_modules
6767
key: node_modules-${{ hashFiles('**/package-temp-dir/package-lock.json') }}
@@ -80,13 +80,13 @@ jobs:
8080
persist-credentials: false
8181

8282
- name: restore cache from package-lock.json
83-
uses: actions/cache@v5
83+
uses: actions/cache@v6
8484
with:
8585
path: package-temp-dir
8686
key: lock-${{ github.sha }}
8787

8888
- name: restore cache from node_modules
89-
uses: actions/cache@v5
89+
uses: actions/cache@v6
9090
with:
9191
path: node_modules
9292
key: node_modules-${{ hashFiles('**/package-temp-dir/package-lock.json') }}
@@ -105,13 +105,13 @@ jobs:
105105
persist-credentials: false
106106

107107
- name: restore cache from package-lock.json
108-
uses: actions/cache@v5
108+
uses: actions/cache@v6
109109
with:
110110
path: package-temp-dir
111111
key: lock-${{ github.sha }}
112112

113113
- name: restore cache from node_modules
114-
uses: actions/cache@v5
114+
uses: actions/cache@v6
115115
with:
116116
path: node_modules
117117
key: node_modules-${{ hashFiles('**/package-temp-dir/package-lock.json') }}

0 commit comments

Comments
 (0)