Skip to content

Commit 003be28

Browse files
Bump actions/checkout from 4 to 5 (#996)
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [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> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 09ea16b commit 003be28

6 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/build_pkg.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
runs-on: ubuntu-latest
3737
steps:
3838
- name: Checkout
39-
uses: actions/checkout@v4
39+
uses: actions/checkout@v5
4040
with:
4141
fetch-depth: 0 # Fetch all history for all tags and branches
4242

@@ -74,7 +74,7 @@ jobs:
7474
name: pypi build
7575
runs-on: ubuntu-latest
7676
steps:
77-
- uses: actions/checkout@v4
77+
- uses: actions/checkout@v5
7878
with:
7979
fetch-depth: 0 # Fetch all history for all tags and branches
8080
- uses: actions/setup-python@v5

.github/workflows/changelog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Checkout code
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v5
1919
- name: Grep for PR number in CHANGELOG.md
2020
run: grep -P '{pull}`${{github.event.number}}`' CHANGELOG.md

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
nb_execution_mode: 'force'
4343
steps:
4444
- name: Checkout
45-
uses: actions/checkout@v4
45+
uses: actions/checkout@v5
4646
with:
4747
fetch-depth: 0 # Fetch all history for all tags and branches
4848

.github/workflows/pytest.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
py: '3.10'
4444
asdf: 2
4545
steps:
46-
- uses: actions/checkout@v4
46+
- uses: actions/checkout@v5
4747
with:
4848
fetch-depth: '0' # Fetch all history for all tags and branches
4949

@@ -148,7 +148,7 @@ jobs:
148148
os: [windows-latest]
149149
py: ['3.10']
150150
steps:
151-
- uses: actions/checkout@v4
151+
- uses: actions/checkout@v5
152152
with:
153153
fetch-depth: '0' # Fetch all history for all tags and branches
154154

.github/workflows/pytest_asdf.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
name: pytest asdf
2323
runs-on: ubuntu-latest
2424
steps:
25-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@v5
2626
with:
2727
fetch-depth: 0 # Fetch all history for all tags and branches
2828
repository: ${{ github.event.pull_request.head.repo.full_name }}
@@ -72,7 +72,7 @@ jobs:
7272
name: validate weldx manifest
7373
runs-on: ubuntu-latest
7474
steps:
75-
- uses: actions/checkout@v4
75+
- uses: actions/checkout@v5
7676
- uses: actions/setup-python@v5
7777
with:
7878
python-version: '3.10'

.github/workflows/static_analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
pre-commit:
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@v5
1919
- uses: actions/setup-python@v5
2020
with:
2121
python-version: 3.x
@@ -30,7 +30,7 @@ jobs:
3030
strategy:
3131
fail-fast: false
3232
steps:
33-
- uses: actions/checkout@v4
33+
- uses: actions/checkout@v5
3434
with:
3535
fetch-depth: 0 # Fetch all history for all tags and branches
3636

0 commit comments

Comments
 (0)