Skip to content

Commit 8b17d6f

Browse files
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 | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `5.0.0` | `6.0.1` | | [actions/setup-node](https://github.com/actions/setup-node) | `6.0.0` | `6.1.0` | | [actions/cache](https://github.com/actions/cache) | `4.3.0` | `5.0.1` | | [github/codeql-action](https://github.com/github/codeql-action) | `4.31.2` | `4.31.9` | | [actions/dependency-review-action](https://github.com/actions/dependency-review-action) | `4.8.1` | `4.8.2` | Updates `actions/checkout` from 5.0.0 to 6.0.1 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5.0.0...v6.0.1) Updates `actions/setup-node` from 6.0.0 to 6.1.0 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](actions/setup-node@v6.0.0...v6.1.0) Updates `actions/cache` from 4.3.0 to 5.0.1 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4.3.0...v5.0.1) Updates `github/codeql-action` from 4.31.2 to 4.31.9 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@v4.31.2...v4.31.9) Updates `actions/dependency-review-action` from 4.8.1 to 4.8.2 - [Release notes](https://github.com/actions/dependency-review-action/releases) - [Commits](actions/dependency-review-action@v4.8.1...v4.8.2) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.1 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-node dependency-version: 6.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: actions/cache dependency-version: 5.0.1 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: github/codeql-action dependency-version: 4.31.9 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: actions/dependency-review-action dependency-version: 4.8.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 35950cd commit 8b17d6f

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

.github/workflows/build-lint.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ jobs:
2525

2626
steps:
2727
- name: ⤵️ Checkout repository
28-
uses: actions/checkout@v5.0.0
28+
uses: actions/checkout@v6.0.1
2929

3030
- name: 🏗 Setup nodejs
31-
uses: actions/setup-node@v6.0.0
31+
uses: actions/setup-node@v6.1.0
3232
with:
3333
node-version: ${{ env.NODE_VERSION }}
3434

@@ -40,7 +40,7 @@ jobs:
4040
run: echo "cache_folder=$(yarn config get cacheFolder)" >> $GITHUB_OUTPUT
4141

4242
- name: 🏗 Cache Layer
43-
uses: actions/cache@v4.3.0
43+
uses: actions/cache@v5.0.1
4444
# id: yarn_cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
4545
with:
4646
path: ${{ steps.yarn_config.outputs.cache_folder }}

.github/workflows/codeql.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,17 +32,17 @@ jobs:
3232

3333
steps:
3434
- name: ⤵️ Checkout repository
35-
uses: actions/checkout@v5.0.0
35+
uses: actions/checkout@v6.0.1
3636

3737
- name: 🏗 Initialize CodeQL
38-
uses: github/codeql-action/[email protected].2
38+
uses: github/codeql-action/[email protected].9
3939
with:
4040
languages: ${{ matrix.language }}
4141
# Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
4242
# queries: security-extended,security-and-quality
4343

4444
- name: 🏗 Auto build
45-
uses: github/codeql-action/[email protected].2
45+
uses: github/codeql-action/[email protected].9
4646

4747
- name: 🚀 Perform CodeQL Analysis
48-
uses: github/codeql-action/[email protected].2
48+
uses: github/codeql-action/[email protected].9

.github/workflows/dependency-review.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
steps:
1919
- name: ⤵️ Checkout repository
20-
uses: actions/checkout@v5.0.0
20+
uses: actions/checkout@v6.0.1
2121

2222
- name: 🚀 Dependency Review
23-
uses: actions/[email protected].1
23+
uses: actions/[email protected].2

.github/workflows/publish-npm.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ jobs:
2424

2525
steps:
2626
- name: ⤵️ Checkout repository
27-
uses: actions/checkout@v5.0.0
27+
uses: actions/checkout@v6.0.1
2828

2929
- name: 🏗 Setup nodejs
30-
uses: actions/setup-node@v6.0.0
30+
uses: actions/setup-node@v6.1.0
3131
with:
3232
node-version: ${{ env.NODE_VERSION }}
3333
registry-url: 'https://registry.npmjs.org'
@@ -40,7 +40,7 @@ jobs:
4040
run: echo "cache_folder=$(yarn config get cacheFolder)" >> $GITHUB_OUTPUT
4141

4242
- name: 🏗 Cache Layer
43-
uses: actions/cache@v4.3.0
43+
uses: actions/cache@v5.0.1
4444
# id: yarn_cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
4545
with:
4646
path: ${{ steps.yarn_config.outputs.cache_folder }}

.github/workflows/sync-labels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222

2323
steps:
2424
- name: ⤵️ Check out code from GitHub
25-
uses: actions/checkout@v5.0.0
25+
uses: actions/checkout@v6.0.1
2626

2727
- name: 🚀 Run Label Syncer
2828
uses: micnncim/[email protected]

0 commit comments

Comments
 (0)