Skip to content

Commit 2d7b6e6

Browse files
Update actions/checkout action to v5 (#5103)
Co-authored-by: dependencyupdates[bot] <218638057+dependencyupdates[bot]@users.noreply.github.com>
1 parent 2e756dc commit 2d7b6e6

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.github/workflows/build-containers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
shell: pwsh
3333
run: exit $(If ($env:SECRETS_AVAILABLE -eq 'true') { 0 } Else { 1 })
3434
- name: Checkout
35-
uses: actions/checkout@v4.2.2
35+
uses: actions/checkout@v5.0.0
3636
with:
3737
fetch-depth: 0
3838
- name: Setup .NET SDK

.github/workflows/build-db-container.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
shell: pwsh
1717
run: exit $(If ($env:SECRETS_AVAILABLE -eq 'true') { 0 } Else { 1 })
1818
- name: Checkout
19-
uses: actions/checkout@v4.2.2
19+
uses: actions/checkout@v5.0.0
2020
with:
2121
fetch-depth: 0
2222
- name: Setup .NET SDK

.github/workflows/build-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
SECRETS_AVAILABLE: ${{ secrets.SECRETS_AVAILABLE }}
1313
run: exit $(If ($env:SECRETS_AVAILABLE -eq 'true') { 0 } Else { 1 })
1414
- name: Checkout
15-
uses: actions/checkout@v4.2.2
15+
uses: actions/checkout@v5.0.0
1616
with:
1717
fetch-depth: 0
1818
- name: Setup .NET SDK

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
SECRETS_AVAILABLE: ${{ secrets.SECRETS_AVAILABLE }}
3535
run: exit $(If ($env:SECRETS_AVAILABLE -eq 'true') { 0 } Else { 1 })
3636
- name: Checkout
37-
uses: actions/checkout@v4.2.2
37+
uses: actions/checkout@v5.0.0
3838
with:
3939
fetch-depth: 0
4040
- name: Setup .NET SDK

.github/workflows/container-integration-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
shell: pwsh
5151
run: exit $(If ($env:SECRETS_AVAILABLE -eq 'true') { 0 } Else { 1 })
5252
- name: Checkout
53-
uses: actions/checkout@v4.2.2
53+
uses: actions/checkout@v5.0.0
5454
with:
5555
fetch-depth: 0
5656
- name: Setup .NET SDK

.github/workflows/push-container-images.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
shell: pwsh
1616
steps:
1717
- name: Checkout
18-
uses: actions/checkout@v4.2.2
18+
uses: actions/checkout@v5.0.0
1919
- name: Validate build version
2020
id: validate
2121
uses: ./.github/actions/validate-version

0 commit comments

Comments
 (0)