Skip to content

Commit cd76b82

Browse files
Bump actions/checkout from 3 to 6 (#80)
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v3...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> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 1463a21 commit cd76b82

7 files changed

+17
-17
lines changed

.github/workflows/docker-multistage-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,13 +73,13 @@ jobs:
7373
# Setup repository
7474
# ------------------------------------------------------------
7575
- name: "[SETUP] Checkout repository (current)"
76-
uses: actions/checkout@v3
76+
uses: actions/checkout@v6
7777
with:
7878
fetch-depth: 0
7979
if: ${{ !inputs.has_refs }}
8080

8181
- name: "[SETUP] Checkout repository (ref: ${{ matrix.REFS }})"
82-
uses: actions/checkout@v3
82+
uses: actions/checkout@v6
8383
with:
8484
fetch-depth: 0
8585
ref: ${{ matrix.REFS }}

.github/workflows/docker-multistage-push-image.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,13 @@ jobs:
5555
# Setup repository
5656
# ------------------------------------------------------------
5757
- name: "[SETUP] Checkout repository (current)"
58-
uses: actions/checkout@v3
58+
uses: actions/checkout@v6
5959
with:
6060
fetch-depth: 0
6161
if: ${{ !inputs.has_refs }}
6262

6363
- name: "[SETUP] Checkout repository (ref: ${{ matrix.REFS }})"
64-
uses: actions/checkout@v3
64+
uses: actions/checkout@v6
6565
with:
6666
fetch-depth: 0
6767
ref: ${{ matrix.REFS }}

.github/workflows/docker-multistage-push-manifest.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,13 +57,13 @@ jobs:
5757
# Setup repository
5858
# ------------------------------------------------------------
5959
- name: "[SETUP] Checkout repository (current)"
60-
uses: actions/checkout@v3
60+
uses: actions/checkout@v6
6161
with:
6262
fetch-depth: 0
6363
if: ${{ !inputs.has_refs }}
6464

6565
- name: "[SETUP] Checkout repository (ref: ${{ matrix.REFS }})"
66-
uses: actions/checkout@v3
66+
uses: actions/checkout@v6
6767
with:
6868
fetch-depth: 0
6969
ref: ${{ matrix.REFS }}

.github/workflows/docker-multistage-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@ jobs:
4141
# Setup repository
4242
# ------------------------------------------------------------
4343
- name: "[SETUP] Checkout repository (current)"
44-
uses: actions/checkout@v3
44+
uses: actions/checkout@v6
4545
with:
4646
fetch-depth: 0
4747
if: ${{ !inputs.has_refs }}
4848

4949
- name: "[SETUP] Checkout repository (ref: ${{ matrix.REFS }})"
50-
uses: actions/checkout@v3
50+
uses: actions/checkout@v6
5151
with:
5252
fetch-depth: 0
5353
ref: ${{ matrix.REFS }}

.github/workflows/docker-name-version-arch.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -126,13 +126,13 @@ jobs:
126126
# Setup repository
127127
# ------------------------------------------------------------
128128
- name: "[SETUP] Checkout repository (current)"
129-
uses: actions/checkout@v3
129+
uses: actions/checkout@v6
130130
with:
131131
fetch-depth: 0
132132
if: needs.configure.outputs.has_refs == 0
133133

134134
- name: "[SETUP] Checkout repository (ref: ${{ matrix.refs }})"
135-
uses: actions/checkout@v3
135+
uses: actions/checkout@v6
136136
with:
137137
fetch-depth: 0
138138
ref: ${{ matrix.refs }}
@@ -215,13 +215,13 @@ jobs:
215215
# Setup repository
216216
# ------------------------------------------------------------
217217
- name: "[SETUP] Checkout repository (current)"
218-
uses: actions/checkout@v3
218+
uses: actions/checkout@v6
219219
with:
220220
fetch-depth: 0
221221
if: needs.configure.outputs.has_refs == 0
222222

223223
- name: "[SETUP] Checkout repository (ref: ${{ matrix.refs }})"
224-
uses: actions/checkout@v3
224+
uses: actions/checkout@v6
225225
with:
226226
fetch-depth: 0
227227
ref: ${{ matrix.refs }}

.github/workflows/docker-name-version-flavour-arch.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -126,13 +126,13 @@ jobs:
126126
# Setup repository
127127
# ------------------------------------------------------------
128128
- name: "[SETUP] Checkout repository (current)"
129-
uses: actions/checkout@v3
129+
uses: actions/checkout@v6
130130
with:
131131
fetch-depth: 0
132132
if: needs.configure.outputs.has_refs == 0
133133

134134
- name: "[SETUP] Checkout repository (ref: ${{ matrix.refs }})"
135-
uses: actions/checkout@v3
135+
uses: actions/checkout@v6
136136
with:
137137
fetch-depth: 0
138138
ref: ${{ matrix.refs }}
@@ -215,13 +215,13 @@ jobs:
215215
# Setup repository
216216
# ------------------------------------------------------------
217217
- name: "[SETUP] Checkout repository (current)"
218-
uses: actions/checkout@v3
218+
uses: actions/checkout@v6
219219
with:
220220
fetch-depth: 0
221221
if: needs.configure.outputs.has_refs == 0
222222

223223
- name: "[SETUP] Checkout repository (ref: ${{ matrix.refs }})"
224-
uses: actions/checkout@v3
224+
uses: actions/checkout@v6
225225
with:
226226
fetch-depth: 0
227227
ref: ${{ matrix.refs }}

.github/workflows/lint-generic.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
steps:
1515

1616
- name: "[SETUP] Checkout repository"
17-
uses: actions/checkout@v3
17+
uses: actions/checkout@v6
1818
with:
1919
fetch-depth: 0
2020

0 commit comments

Comments
 (0)