Skip to content

Commit 18c6f35

Browse files
Bump actions/checkout from 5 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 9a780ae commit 18c6f35

File tree

11 files changed

+15
-15
lines changed

11 files changed

+15
-15
lines changed

.github/workflows/Auto-Release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: ubuntu-latest
2727
steps:
2828
- name: Checkout Code
29-
uses: actions/checkout@v5
29+
uses: actions/checkout@v6
3030

3131
- name: Auto-Release
3232
uses: PSModule/Auto-Release@v1

.github/workflows/Build-Docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
runs-on: ubuntu-latest
4949
steps:
5050
- name: Checkout Code
51-
uses: actions/checkout@v5
51+
uses: actions/checkout@v6
5252
with:
5353
persist-credentials: false
5454
fetch-depth: 0

.github/workflows/Build-Module.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
GH_TOKEN: ${{ github.token }}
3030
steps:
3131
- name: Checkout Code
32-
uses: actions/checkout@v5
32+
uses: actions/checkout@v6
3333
with:
3434
persist-credentials: false
3535
fetch-depth: 0

.github/workflows/Build-Site.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
runs-on: ubuntu-latest
4343
steps:
4444
- name: Checkout Code
45-
uses: actions/checkout@v5
45+
uses: actions/checkout@v6
4646
with:
4747
persist-credentials: false
4848
fetch-depth: 0

.github/workflows/Get-Settings.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
ModuleTestSuites: ${{ fromJson(steps.Get-Settings.outputs.result).ModuleTestSuites }}
6666
steps:
6767
- name: Checkout Code
68-
uses: actions/checkout@v5
68+
uses: actions/checkout@v6
6969
with:
7070
persist-credentials: false
7171
fetch-depth: 0

.github/workflows/Lint-SourceCode.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
runs-on: ${{ inputs.RunsOn }}
5151
steps:
5252
- name: Checkout Code
53-
uses: actions/checkout@v5
53+
uses: actions/checkout@v6
5454
with:
5555
persist-credentials: false
5656

.github/workflows/Linter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020
steps:
2121
- name: Checkout repo
22-
uses: actions/checkout@v5
22+
uses: actions/checkout@v6
2323
with:
2424
persist-credentials: false
2525
fetch-depth: 0

.github/workflows/Test-Module.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ jobs:
8181
runs-on: ${{ inputs.RunsOn }}
8282
steps:
8383
- name: Checkout repository
84-
uses: actions/checkout@v5
84+
uses: actions/checkout@v6
8585
with:
8686
persist-credentials: false
8787

@@ -107,7 +107,7 @@ jobs:
107107
runs-on: ${{ inputs.RunsOn }}
108108
steps:
109109
- name: Checkout repository
110-
uses: actions/checkout@v5
110+
uses: actions/checkout@v6
111111
with:
112112
persist-credentials: false
113113

.github/workflows/Test-ModuleLocal.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ jobs:
9292
runs-on: ${{ inputs.RunsOn }}
9393
steps:
9494
- name: Checkout Code
95-
uses: actions/checkout@v5
95+
uses: actions/checkout@v6
9696
with:
9797
persist-credentials: false
9898
fetch-depth: 0

.github/workflows/Test-SourceCode.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
runs-on: ${{ inputs.RunsOn }}
5151
steps:
5252
- name: Checkout Code
53-
uses: actions/checkout@v5
53+
uses: actions/checkout@v6
5454
with:
5555
persist-credentials: false
5656
fetch-depth: 0

0 commit comments

Comments
 (0)