Skip to content

Commit b92ae95

Browse files
dependabot[bot]neilime
authored andcommitted
chore(deps): bump the github-actions-dependencies group across 1 directory with 3 updates
Bumps the github-actions-dependencies group with 3 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/download-artifact](https://github.com/actions/download-artifact) and [github/codeql-action](https://github.com/github/codeql-action). Updates `actions/checkout` from 4.2.2 to 5.0.0 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@11bd719...08c6903) Updates `actions/download-artifact` from 4.3.0 to 5.0.0 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@d3f86a1...634f93c) Updates `github/codeql-action` from 3.29.2 to 3.29.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@181d5ee...df55935) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 5.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-dependencies - dependency-name: actions/download-artifact dependency-version: 5.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-dependencies - dependency-name: github/codeql-action dependency-version: 3.29.9 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions-dependencies ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 308110b commit b92ae95

6 files changed

+13
-13
lines changed

.github/workflows/__test-action-dependencies-cache.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
steps:
2828
# jscpd:ignore-start
2929

30-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
30+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
3131

3232
- id: setup-node
3333
uses: ./actions/setup-node

.github/workflows/__test-action-get-package-manager.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
install-command: yarn install --frozen-lockfile
4242
run-script-command: yarn
4343
steps:
44-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
44+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
4545

4646
- id: get-package-manager
4747
uses: ./actions/get-package-manager

.github/workflows/__test-action-has-installed-dependencies.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
package-manager: yarn
3030
lock-file: yarn.lock
3131
steps:
32-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
32+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
3333

3434
- id: setup-node
3535
uses: ./actions/setup-node

.github/workflows/__test-action-setup-node.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
lock-file: yarn.lock
3434
run-script-command: yarn
3535
steps:
36-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
36+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
3737

3838
- run: echo "lts/*" > .nvmrc
3939
working-directory: ${{ matrix.working-directory }}

.github/workflows/__test-workflow-continuous-integration.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ jobs:
2424
runs-on: ubuntu-latest
2525
needs: act
2626
steps:
27-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
28-
- uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
27+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
28+
- uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
2929
with:
3030
name: build
3131
path: "/"

.github/workflows/continuous-integration.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -67,10 +67,10 @@ jobs:
6767
runs-on: "ubuntu-latest"
6868
steps:
6969
- uses: hoverkraft-tech/ci-github-common/actions/checkout@6857ef6d10f704e0998aa4955282f27d1b9be778 # 0.23.1
70-
- uses: github/codeql-action/init@181d5eefc20863364f96762470ba6f862bdef56b # v3.29.2
70+
- uses: github/codeql-action/init@df559355d593797519d70b90fc8edd5db049e7a2 # v3.29.9
7171
with:
7272
languages: ${{ inputs.code-ql }}
73-
- uses: github/codeql-action/analyze@181d5eefc20863364f96762470ba6f862bdef56b # v3.29.2
73+
- uses: github/codeql-action/analyze@df559355d593797519d70b90fc8edd5db049e7a2 # v3.29.9
7474

7575
dependency-review:
7676
name: 🛡️ Dependency Review
@@ -99,7 +99,7 @@ jobs:
9999
# jscpd:ignore-start
100100
- id: oidc
101101
uses: ChristopherHX/oidc@73eee1ff03fdfce10eda179f617131532209edbd # v3
102-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
102+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
103103
with:
104104
path: ./self-workflow
105105
repository: ${{ steps.oidc.outputs.job_workflow_repo_name_and_owner }}
@@ -173,7 +173,7 @@ jobs:
173173
# FIXME: This is a workaround for having workflow ref. See https://github.com/orgs/community/discussions/38659
174174
- id: oidc
175175
uses: ChristopherHX/oidc@73eee1ff03fdfce10eda179f617131532209edbd # v3
176-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
176+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
177177
with:
178178
path: ./self-workflow
179179
repository: ${{ steps.oidc.outputs.job_workflow_repo_name_and_owner }}
@@ -209,7 +209,7 @@ jobs:
209209
- id: oidc
210210
if: needs.setup.outputs.build-commands
211211
uses: ChristopherHX/oidc@73eee1ff03fdfce10eda179f617131532209edbd # v3
212-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
212+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
213213
if: needs.setup.outputs.build-commands
214214
with:
215215
path: ./self-workflow
@@ -266,14 +266,14 @@ jobs:
266266
- uses: hoverkraft-tech/ci-github-common/actions/checkout@6857ef6d10f704e0998aa4955282f27d1b9be778 # 0.23.1
267267

268268
- if: needs.setup.outputs.build-artifact
269-
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
269+
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
270270
with:
271271
name: build
272272
path: "/"
273273
# FIXME: This is a workaround for having workflow ref. See https://github.com/orgs/community/discussions/38659
274274
- id: oidc
275275
uses: ChristopherHX/oidc@73eee1ff03fdfce10eda179f617131532209edbd # v3
276-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
276+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
277277
with:
278278
path: ./self-workflow
279279
repository: ${{ steps.oidc.outputs.job_workflow_repo_name_and_owner }}

0 commit comments

Comments
 (0)