Skip to content

Commit f90900e

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

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/build-test-pack.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
FEEDZ_IO_PRIVATE_TOKEN: ${{ secrets.FEEDZ_IO_PRIVATE_TOKEN }}
1818
steps:
1919
- name: Checkout repository with full history
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v5
2121
with:
2222
fetch-depth: 0 # Checkout with full history so nbgv can compute Git height correctly.
2323
- name: Setup .NET SDK

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
language: [ 'csharp' ] # https://aka.ms/codeql-docs/language-support
2828
steps:
2929
- name: Checkout repository with full history
30-
uses: actions/checkout@v4
30+
uses: actions/checkout@v5
3131
with:
3232
fetch-depth: 0 # Checkout with full history so nbgv can compute Git height correctly.
3333
- name: Initialize CodeQL

.github/workflows/label-pull-requests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
pull-requests: write
1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v5
1616
- name: Assign labels to pull request
1717
uses: actions/labeler@v6
1818
with:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
echo Check changelog before update : %CHECK_CHANGELOG%
7979
echo Cake verbosity : %CAKE_VERBOSITY%
8080
- name: Checkout repository with full history
81-
uses: actions/checkout@v4
81+
uses: actions/checkout@v5
8282
with:
8383
fetch-depth: 0 # Checkout with full history so nbgv can compute Git height correctly.
8484
token: ${{ secrets.RELEASE_TOKEN }}

0 commit comments

Comments
 (0)