Skip to content

Commit c483b99

Browse files
Bump actions/checkout from 4 to 5 (#3440)
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent e6de900 commit c483b99

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/build-ci-atlas.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
driver: 2
4141

4242
steps:
43-
- uses: "actions/checkout@v4"
43+
- uses: "actions/checkout@v5"
4444

4545
- name: "Create MongoDB Atlas Local"
4646
run: |

.github/workflows/build-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
laravel: "12.*"
6666

6767
steps:
68-
- uses: "actions/checkout@v4"
68+
- uses: "actions/checkout@v5"
6969

7070
- name: "Create MongoDB Replica Set"
7171
run: |

.github/workflows/coding-standards.yml

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

2727
steps:
2828
- name: "Checkout"
29-
uses: "actions/checkout@v4"
29+
uses: "actions/checkout@v5"
3030

3131
- name: "Setup cache environment"
3232
id: "extcache"

.github/workflows/merge-up.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
steps:
1818
- name: Checkout
1919
id: checkout
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v5
2121
with:
2222
# fetch-depth 0 is required to fetch all branches, not just the branch being built
2323
fetch-depth: 0

.github/workflows/static-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
- 2
4040
steps:
4141
- name: Checkout
42-
uses: actions/checkout@v4
42+
uses: actions/checkout@v5
4343
with:
4444
ref: ${{ github.event_name == 'workflow_dispatch' && inputs.ref || github.ref }}
4545

0 commit comments

Comments
 (0)