Skip to content

Commit 0a334d7

Browse files
Bump the actions group across 1 directory with 3 updates
Bumps the actions group with 3 updates in the / directory: [actions/cache](https://github.com/actions/cache), [actions/checkout](https://github.com/actions/checkout) and [github/codeql-action](https://github.com/github/codeql-action). Updates `actions/cache` from 5.0.1 to 5.0.2 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@9255dc7...8b402f5) Updates `actions/checkout` from 6.0.1 to 6.0.2 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@8e8c483...de0fac2) Updates `github/codeql-action` from 4.31.9 to 4.31.10 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@5d4e8d1...cdefb33) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 5.0.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: actions/checkout dependency-version: 6.0.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: github/codeql-action dependency-version: 4.31.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 77d6fb6 commit 0a334d7

File tree

7 files changed

+15
-15
lines changed

7 files changed

+15
-15
lines changed

.github/workflows/scorecard.yaml

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

3333
steps:
3434
- name: "Checkout code"
35-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
35+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
3636
with:
3737
persist-credentials: false
3838

@@ -67,6 +67,6 @@ jobs:
6767

6868
# Upload the results to GitHub's code scanning dashboard.
6969
- name: "Upload to code-scanning"
70-
uses: github/codeql-action/upload-sarif@5d4e8d1aca955e8d8589aabd499c5cae939e33c7 # v4.31.9
70+
uses: github/codeql-action/upload-sarif@45cbd0c69e560cd9e7cd7f8c32362050c9b7ded2 # v4.32.2
7171
with:
7272
sarif_file: results.sarif

.github/workflows/test-local-action-inside-home.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
name: local-inside-home
2222
steps:
2323
- name: Checkout
24-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v4
24+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v4
2525
- name: Setup Bats and Bats libs
2626
id: setup-bats
2727
uses: ./
@@ -98,7 +98,7 @@ jobs:
9898
name: local-inside-home-cache
9999
steps:
100100
- name: Checkout
101-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v4
101+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v4
102102
- name: Setup Bats and Bats libs
103103
id: setup-bats
104104
uses: ./

.github/workflows/test-local-action-with-conditionals.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
name: local-options
2222
steps:
2323
- name: Checkout
24-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v4
24+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v4
2525
- name: Setup Bats and Bats libs
2626
id: setup-bats
2727
uses: ./

.github/workflows/test-local-action.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
name: local
2222
steps:
2323
- name: Checkout
24-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v4
24+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v4
2525
- name: Setup Bats and Bats libs
2626
id: setup-bats
2727
uses: ./
@@ -88,7 +88,7 @@ jobs:
8888
name: local-default-no-cache
8989
steps:
9090
- name: Checkout
91-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v4
91+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v4
9292
- name: Setup Bats and Bats libs
9393
uses: ./
9494
id: setup-bats

.github/workflows/test-public-action.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
name: public
2323
steps:
2424
- name: Checkout
25-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v4
25+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v4
2626
- name: Setup Bats and Bats libs
2727
id: setup-bats
2828
uses: bats-core/bats-action@main
@@ -89,7 +89,7 @@ jobs:
8989
name: public-no-cache
9090
steps:
9191
- name: Checkout
92-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v4
92+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v4
9393
- name: Setup Bats and Bats-libs
9494
uses: bats-core/bats-action@main
9595
id: setup-bats

.github/workflows/update-pre-commit-hooks.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Check out code
13-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v4
13+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v4
1414
- name: Update pre-commit hooks
1515
uses: brokenpip3/action-pre-commit-update@main
1616
with:

action.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ runs:
113113
steps:
114114
# This action would be much easier if only matrix steps will be supported in a composite action
115115
- name: "Set cache for Bats"
116-
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v4
116+
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v4
117117
if: inputs.bats-install == 'true'
118118
id: bats-cache
119119
with:
@@ -202,7 +202,7 @@ runs:
202202
203203
- name: "Set cache for Bats-support"
204204
if: inputs.support-install == 'true'
205-
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v4
205+
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v4
206206
id: support-cache
207207
with:
208208
path: ${{ env.SUPPORT_DESTDIR }}
@@ -251,7 +251,7 @@ runs:
251251
252252
- name: "Set cache for Bats-assert"
253253
if: inputs.assert-install == 'true'
254-
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v4
254+
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v4
255255
id: assert-cache
256256
with:
257257
path: ${{ env.ASSERT_DESTDIR }}
@@ -300,7 +300,7 @@ runs:
300300
301301
- name: "Set cache for Bats-detik"
302302
if: inputs.detik-install == 'true'
303-
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v4
303+
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v4
304304
id: detik-cache
305305
with:
306306
path: ${{ env.DETIK_DESTDIR }}
@@ -348,7 +348,7 @@ runs:
348348
349349
- name: "Set cache for Bats-file"
350350
if: inputs.file-install == 'true'
351-
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v4
351+
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v4
352352
id: file-cache
353353
with:
354354
path: ${{ env.FILE_DESTDIR }}

0 commit comments

Comments
 (0)