Skip to content

Commit f86c19a

Browse files
Bump actions/checkout from 4 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...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] <support@github.com>
1 parent 4ebe671 commit f86c19a

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/build-dotnet.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Build .NET
1+
name: Build .NET
22

33
on:
44
workflow_call:
@@ -15,7 +15,7 @@ jobs:
1515
NUGET_PACKAGES: ${{ github.workspace }}/.nuget/packages
1616
steps:
1717
- name: Checkout
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v6
1919

2020
- name: Setup .NET
2121
uses: actions/setup-dotnet@v4

.github/workflows/main.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Build & Test (Main)
1+
name: Build & Test (Main)
22

33
on:
44
push:
@@ -22,7 +22,7 @@ jobs:
2222
with:
2323
token: ${{ secrets.GITHUB_TOKEN }}
2424
- name: Checkout
25-
uses: actions/checkout@v4
25+
uses: actions/checkout@v6
2626
with:
2727
sparse-checkout: .
2828
- name: Generate variables

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
is_prerelease: ${{ steps.version.outputs.is_prerelease }}
2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@v6
2323
with:
2424
sparse-checkout: build
2525

@@ -49,7 +49,7 @@ jobs:
4949
NUGET_PACKAGES: ${{ github.workspace }}/.nuget/packages
5050
steps:
5151
- name: Checkout
52-
uses: actions/checkout@v4
52+
uses: actions/checkout@v6
5353

5454
- name: Setup .NET
5555
uses: actions/setup-dotnet@v4

0 commit comments

Comments
 (0)