Skip to content

Commit 72632a4

Browse files
committed
Updates actions/checkout to v5
Updates the checkout action to the latest major version in multiple workflows.
1 parent bca2b83 commit 72632a4

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
os: [ windows-2025, ubuntu-24.04, macos-15 ]
1111
fail-fast: false
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v5
1414
with:
1515
fetch-depth: 0
1616
- uses: gittools/actions/gitversion/setup@v4.1.0

.github/workflows/different-job.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
GitVersion_SemVer: ${{ steps.version_step.outputs.GitVersion_SemVer }}
2121
GitVersion_FullSemVer: ${{ steps.version_step.outputs.GitVersion_FullSemVer }}
2222
steps:
23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v5
2424
with:
2525
fetch-depth: 0
2626
- uses: gittools/actions/gitversion/setup@v4.1.0

.github/workflows/same-job.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
os: [ windows-2025, ubuntu-24.04, macos-15 ]
1111
fail-fast: false
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v5
1414
with:
1515
fetch-depth: 0
1616
- uses: gittools/actions/gitversion/setup@v4.1.0

.github/workflows/update-version-prod.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
if: ${{ github.event_name == 'repository_dispatch' }}
1414
runs-on: ubuntu-24.04
1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v5
1717
with:
1818
token: ${{ secrets.PUSH_GITHUB_TOKEN }}
1919
- run: |

.github/workflows/update-version-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
if: ${{ github.event_name == 'repository_dispatch' }}
1414
runs-on: ubuntu-24.04
1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v5
1717
with:
1818
token: ${{ secrets.PUSH_GITHUB_TOKEN }}
1919
- run: |

0 commit comments

Comments
 (0)