Skip to content

Commit 52224f9

Browse files
Bump actions/checkout from 3 to 4 (actions#3556)
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v3...v4) --- updated-dependencies: - dependency-name: actions/checkout 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 79ceac7 commit 52224f9

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.github/workflows/build.yml

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

5151
runs-on: ${{ matrix.os }}
5252
steps:
53-
- uses: actions/checkout@v3
53+
- uses: actions/checkout@v4
5454

5555
# Build runner layout
5656
- name: Build & Layout Release

.github/workflows/codeql.yml

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

2424
steps:
2525
- name: Checkout repository
26-
uses: actions/checkout@v3
26+
uses: actions/checkout@v4
2727

2828
# Initializes the CodeQL tools for scanning.
2929
- name: Initialize CodeQL

.github/workflows/dotnet-upgrade.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
DOTNET_CURRENT_MAJOR_MINOR_VERSION: ${{ steps.fetch_current_version.outputs.DOTNET_CURRENT_MAJOR_MINOR_VERSION }}
1616
steps:
1717
- name: Checkout repository
18-
uses: actions/checkout@v3
18+
uses: actions/checkout@v4
1919
- name: Get current major minor version
2020
id: fetch_current_version
2121
shell: bash
@@ -89,7 +89,7 @@ jobs:
8989
if: ${{ needs.dotnet-update.outputs.SHOULD_UPDATE == 1 && needs.dotnet-update.outputs.BRANCH_EXISTS == 0 }}
9090
runs-on: ubuntu-latest
9191
steps:
92-
- uses: actions/checkout@v3
92+
- uses: actions/checkout@v4
9393
with:
9494
ref: feature/dotnetsdk-upgrade/${{ needs.dotnet-update.outputs.DOTNET_LATEST_MAJOR_MINOR_PATCH_VERSION }}
9595
- name: Create Pull Request

.github/workflows/publish-image.yml

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

2121
steps:
2222
- name: Checkout repository
23-
uses: actions/checkout@v3
23+
uses: actions/checkout@v4
2424

2525
- name: Compute image version
2626
id: image

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
if: startsWith(github.ref, 'refs/heads/releases/') || github.ref == 'refs/heads/main'
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515

1616
# Make sure ./releaseVersion match ./src/runnerversion
1717
# Query GitHub release ensure version is not used
@@ -87,7 +87,7 @@ jobs:
8787

8888
runs-on: ${{ matrix.os }}
8989
steps:
90-
- uses: actions/checkout@v3
90+
- uses: actions/checkout@v4
9191

9292
# Build runner layout
9393
- name: Build & Layout Release
@@ -130,7 +130,7 @@ jobs:
130130
runs-on: ubuntu-latest
131131
steps:
132132

133-
- uses: actions/checkout@v3
133+
- uses: actions/checkout@v4
134134

135135
# Download runner package tar.gz/zip produced by 'build' job
136136
- name: Download Artifact (win-x64)
@@ -296,7 +296,7 @@ jobs:
296296
IMAGE_NAME: ${{ github.repository_owner }}/actions-runner
297297
steps:
298298
- name: Checkout repository
299-
uses: actions/checkout@v3
299+
uses: actions/checkout@v4
300300

301301
- name: Compute image version
302302
id: image

0 commit comments

Comments
 (0)