Skip to content

Commit d77dddb

Browse files
Bump actions/checkout from 6.0.2 to 6.0.3
Bumps [actions/checkout](https://github.com/actions/checkout) from 6.0.2 to 6.0.3. - [Release notes](https://github.com/actions/checkout/releases) - [Commits](actions/checkout@v6.0.2...v6.0.3) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.3 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 3dddd74 commit d77dddb

18 files changed

Lines changed: 27 additions & 27 deletions

.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@v6.0.2
18+
- uses: actions/checkout@v6.0.3
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@v6.0.2
39+
- uses: actions/checkout@v6.0.3
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,11 +50,11 @@ jobs:
5050
shell: perl {0}
5151
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
5252
# Reference a specific commit (most secure — immutable)
53-
- uses: actions/checkout@0c366fd6a839edf440554fa01a7085ccba70ac98
53+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10
5454
# Reference the major version of a release
55-
- uses: actions/checkout@v6.0.2
55+
- uses: actions/checkout@v6.0.3
5656
# Reference a specific version
57-
- uses: actions/checkout@v6.0.2
57+
- uses: actions/checkout@v6.0.3
5858
# ⚠️ INSECURE — branch refs are mutable and vulnerable to supply chain attacks
5959
# Reference a branch (demo only — do NOT use in production workflows)
6060
- 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@v6.0.2
30+
- uses: actions/checkout@v6.0.3
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@v6.0.2
32+
- uses: actions/checkout@v6.0.3
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@v6.0.2
47+
- uses: actions/checkout@v6.0.3
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@v6.0.2
30+
- uses: actions/checkout@v6.0.3
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@v6.0.2
29+
- uses: actions/checkout@v6.0.3
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@v6.0.2
29+
- uses: actions/checkout@v6.0.3
3030
- name: Use Node.js ${{ matrix.node-version }}
3131
uses: actions/setup-node@v6
3232
with:

.github/workflows/10-dotnet.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
runs-on: ubuntu-latest
2525

2626
steps:
27-
- uses: actions/checkout@v6.0.2
27+
- uses: actions/checkout@v6.0.3
2828
- name: Setup .NET
2929
uses: actions/setup-dotnet@v5
3030
with:

.github/workflows/11-artifacts-caching.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
working-directory: node-example
2020

2121
steps:
22-
- uses: actions/checkout@v6.0.2
22+
- uses: actions/checkout@v6.0.3
2323

2424
- name: Setup Node.js with caching
2525
uses: actions/setup-node@v6

0 commit comments

Comments
 (0)