Skip to content

Commit 059374f

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) - [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 b4bad7a commit 059374f

15 files changed

+18
-18
lines changed

.github/workflows/00-basic.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
# Steps represent a sequence of tasks that will be executed as part of the job
1616
steps:
1717
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
18-
- uses: actions/checkout@v4.1.1
18+
- uses: actions/checkout@v5
1919

2020
# Runs a single command using the runners shell
2121
- name: Run a one-line script

.github/workflows/00a-basic-filters.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
# Steps represent a sequence of tasks that will be executed as part of the job
3737
steps:
3838
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
39-
- uses: actions/checkout@v4.1.1
39+
- uses: actions/checkout@v5
4040

4141
# Runs a single command using the runners shell
4242
- name: Run a one-line script

.github/workflows/03-steps.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,10 @@ jobs:
5050
shell: perl {0}
5151
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
5252
# Reference a specific commit
53-
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
53+
- uses: actions/checkout@71cf2267d89c5cb81562390fa70a37fa40b1305e
5454
# Reference the major version of a release
55-
- uses: actions/checkout@v4
55+
- uses: actions/checkout@v5
5656
# Reference a specific version
57-
- uses: actions/checkout@v4.1.1
57+
- uses: actions/checkout@v5
5858
# Reference a branch
5959
- uses: actions/checkout@main

.github/workflows/04-environment-variables.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
# Steps represent a sequence of tasks that will be executed as part of the job
2828
steps:
2929
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
30-
- uses: actions/checkout@v4.1.1
30+
- uses: actions/checkout@v5
3131

3232
# Runs a single command using the runners shell
3333
- name: Run a one-line script

.github/workflows/04-environment-variables2.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
# Steps represent a sequence of tasks that will be executed as part of the job
3030
steps:
3131
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
32-
- uses: actions/checkout@v4.1.1
32+
- uses: actions/checkout@v5
3333

3434
# Runs a single command using the runners shell
3535
- name: Run a one-line script
@@ -44,7 +44,7 @@ jobs:
4444
# Steps represent a sequence of tasks that will be executed as part of the job
4545
steps:
4646
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
47-
- uses: actions/checkout@v4.1.1
47+
- uses: actions/checkout@v5
4848

4949
# Runs a single command using the runners shell
5050
- name: Run a one-line script

.github/workflows/05-conditionals.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
# Steps represent a sequence of tasks that will be executed as part of the job
2828
steps:
2929
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
30-
- uses: actions/checkout@v4.1.1
30+
- uses: actions/checkout@v5
3131

3232
- name: Run Hello
3333
run: echo "$Greeting, $Name!"

.github/workflows/08-secrets.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
# Steps represent a sequence of tasks that will be executed as part of the job
2727
steps:
2828
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
29-
- uses: actions/checkout@v4.1.1
29+
- uses: actions/checkout@v5
3030

3131
# Runs a single command using the runners shell
3232
- name: Pass via Context

.github/workflows/09-node.js-matrix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
os: [ubuntu-latest, windows-latest]
2727
runs-on: ${{ matrix.os }}
2828
steps:
29-
- uses: actions/checkout@v4.1.1
29+
- uses: actions/checkout@v5
3030
- name: Use Node.js ${{ matrix.node-version }}
3131
uses: actions/setup-node@v4
3232
with:

.github/workflows/10-dotnet.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: ubuntu-latest
2727

2828
steps:
29-
- uses: actions/checkout@v4.1.1
29+
- uses: actions/checkout@v5
3030
- name: Setup .NET
3131
uses: actions/setup-dotnet@v4
3232
with:

.github/workflows/azure-dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
AZURE_LOCATION: ${{ vars.AZURE_LOCATION }}
3636
steps:
3737
- name: Checkout
38-
uses: actions/checkout@v4
38+
uses: actions/checkout@v5
3939

4040
- name: Install azd
4141
uses: Azure/setup-azd@v2.1.0

0 commit comments

Comments
 (0)