Skip to content

Commit 6ba8586

Browse files
Bump actions/checkout from 3 to 4 (#80)
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v3...v4) --- updated-dependencies: - dependency-name: actions/checkout 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 3ba9056 commit 6ba8586

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/workflows/_shared-docs-build-pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ jobs:
290290
fi
291291
292292
- name: Checkout BASE
293-
uses: actions/checkout@v3
293+
uses: actions/checkout@v4
294294
with:
295295
ref: ${{ github.event.pull_request.base.sha }}
296296
path: ${{ steps.vars.outputs.checkout-path }}
@@ -329,7 +329,7 @@ jobs:
329329
artifact-upload: 'false'
330330

331331
- name: Checkout HEAD
332-
uses: actions/checkout@v3
332+
uses: actions/checkout@v4
333333
with:
334334
# It would be better to use
335335
#

.github/workflows/_shared-docs-build-push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ jobs:
208208
fi
209209
210210
- name: Checkout
211-
uses: actions/checkout@v3
211+
uses: actions/checkout@v4
212212
with:
213213
path: ${{ steps.vars.outputs.checkout-path }}
214214
ref: ${{ inputs.build-ref }}

.github/workflows/generate-wiki-docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ jobs:
2323
runs-on: ubuntu-latest
2424
steps:
2525
- if: fromJSON(env.SHOULD_RUN)
26-
uses: actions/checkout@v3
26+
uses: actions/checkout@v4
2727

2828
- name: Checkout wiki
2929
if: fromJSON(env.SHOULD_RUN)
30-
uses: actions/checkout@v3
30+
uses: actions/checkout@v4
3131
with:
3232
repository: ${{ github.repository }}.wiki
3333
path: ${{ env.WIKI }}

.github/workflows/test-action-build-html.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ubuntu-latest
2323
steps:
2424
- name: Checkout
25-
uses: actions/checkout@v3
25+
uses: actions/checkout@v4
2626

2727
- name: Simple 1 invoke - no copy, no artifact
2828
id: simple1

.github/workflows/test-action-build-init.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ jobs:
108108
109109
steps:
110110
- name: Checkout
111-
uses: actions/checkout@v3
111+
uses: actions/checkout@v4
112112

113113
- name: Install Python
114114
uses: actions/setup-python@v5

0 commit comments

Comments
 (0)