Skip to content

Commit 4ca6514

Browse files
dependabot[bot]mgol
authored andcommitted
Build: Bump the github-actions group with 3 updates
Bumps the github-actions group with 3 updates: [actions/setup-node](https://github.com/actions/setup-node), [actions/cache](https://github.com/actions/cache) and [github/codeql-action](https://github.com/github/codeql-action). Closes gh-567 Updates `actions/setup-node` from 4.2.0 to 4.3.0 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](actions/setup-node@1d0ff46...cdca736) Updates `actions/cache` from 4.2.2 to 4.2.3 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@d4323d4...5a3ec84) Updates `github/codeql-action` from 3.28.10 to 3.28.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@b56ba49...1b549b9) --- updated-dependencies: - dependency-name: actions/setup-node dependency-version: 4.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: actions/cache dependency-version: 4.2.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: github/codeql-action dependency-version: 3.28.13 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> (cherry picked from commit e18ffd0)
1 parent 2c286d1 commit 4ca6514

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

Diff for: .github/workflows/browser-tests.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ jobs:
2727
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2828

2929
- name: Use Node.js ${{ env.NODE_VERSION }}
30-
uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4.2.0
30+
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3.0
3131
with:
3232
node-version: ${{ env.NODE_VERSION }}
3333

3434
- name: Cache
35-
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
35+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
3636
with:
3737
path: ~/.npm
3838
key: ${{ runner.os }}-node-${{ env.NODE_VERSION }}-npm-lock-${{ hashFiles('**/package-lock.json') }}
@@ -58,12 +58,12 @@ jobs:
5858
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
5959

6060
- name: Use Node.js ${{ env.NODE_VERSION }}
61-
uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4.2.0
61+
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3.0
6262
with:
6363
node-version: ${{ env.NODE_VERSION }}
6464

6565
- name: Cache
66-
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
66+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
6767
with:
6868
path: ~/.npm
6969
key: ${{ runner.os }}-node-${{ env.NODE_VERSION }}-npm-lock-${{ hashFiles('**/package-lock.json') }}
@@ -87,12 +87,12 @@ jobs:
8787
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
8888

8989
- name: Use Node.js ${{ env.NODE_VERSION }}
90-
uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4.2.0
90+
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3.0
9191
with:
9292
node-version: ${{ env.NODE_VERSION }}
9393

9494
- name: Cache
95-
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
95+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
9696
with:
9797
path: ~/.npm
9898
key: ${{ runner.os }}-node-${{ env.NODE_VERSION }}-npm-lock-${{ hashFiles('**/package-lock.json') }}

Diff for: .github/workflows/browserstack.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -69,12 +69,12 @@ jobs:
6969
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
7070

7171
- name: Use Node.js ${{ env.NODE_VERSION }}
72-
uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4.2.0
72+
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3.0
7373
with:
7474
node-version: ${{ env.NODE_VERSION }}
7575

7676
- name: Cache
77-
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
77+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
7878
with:
7979
path: ~/.npm
8080
key: ${{ runner.os }}-node-${{ env.NODE_VERSION }}-npm-lock-${{ hashFiles('**/package-lock.json') }}

Diff for: .github/workflows/codeql-analysis.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,15 @@ jobs:
3333

3434
# Initializes the CodeQL tools for scanning.
3535
- name: Initialize CodeQL
36-
uses: github/codeql-action/init@b56ba49b26e50535fa1e7f7db0f4f7b4bf65d80d # v3.28.10
36+
uses: github/codeql-action/init@1b549b9259bda1cb5ddde3b41741a82a2d15a841 # v3.28.13
3737
# Override language selection by uncommenting this and choosing your languages
3838
# with:
3939
# languages: go, javascript, csharp, python, cpp, java
4040

4141
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
4242
# If this step fails, then you should remove it and run the build manually (see below)
4343
- name: Autobuild
44-
uses: github/codeql-action/autobuild@b56ba49b26e50535fa1e7f7db0f4f7b4bf65d80d # v3.28.10
44+
uses: github/codeql-action/autobuild@1b549b9259bda1cb5ddde3b41741a82a2d15a841 # v3.28.13
4545

4646
# ℹ️ Command-line programs to run using the OS shell.
4747
# 📚 https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
@@ -55,4 +55,4 @@ jobs:
5555
# make release
5656

5757
- name: Perform CodeQL Analysis
58-
uses: github/codeql-action/analyze@b56ba49b26e50535fa1e7f7db0f4f7b4bf65d80d # v3.28.10
58+
uses: github/codeql-action/analyze@1b549b9259bda1cb5ddde3b41741a82a2d15a841 # v3.28.13

Diff for: .github/workflows/filestash.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ jobs:
2020
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2121

2222
- name: Use Node.js ${{ env.NODE_VERSION }}
23-
uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4.2.0
23+
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3.0
2424
with:
2525
node-version: ${{ env.NODE_VERSION }}
2626

2727
- name: Cache
28-
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
28+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
2929
with:
3030
path: ~/.npm
3131
key: ${{ runner.os }}-node-${{ env.NODE_VERSION }}-npm-lock-${{ hashFiles('**/package-lock.json') }}

Diff for: .github/workflows/node.js.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ jobs:
1717
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1818

1919
- name: Use Node.js ${{ env.NODE_VERSION }}
20-
uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4.2.0
20+
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3.0
2121
with:
2222
node-version: ${{ env.NODE_VERSION }}
2323

2424
- name: Cache
25-
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
25+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
2626
with:
2727
path: ~/.npm
2828
key: ${{ runner.os }}-node-${{ env.NODE_VERSION }}-npm-lock-${{ hashFiles('**/package-lock.json') }}

0 commit comments

Comments
 (0)