Skip to content

Commit ab2b28e

Browse files
build(deps): bump actions/checkout in the github-actions group
Bumps the github-actions group with 1 update: [actions/checkout](https://github.com/actions/checkout). Updates `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 dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 143bf3f commit ab2b28e

9 files changed

Lines changed: 18 additions & 18 deletions

.github/workflows/base_test_workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
name: ${{ inputs.os }} py ${{ inputs.python_version }} ${{ inputs.napari }} ${{ inputs.qt_backend }} ${{ inputs.pydantic }}
5454
runs-on: ${{ inputs.os }}
5555
steps:
56-
- uses: actions/checkout@v4
56+
- uses: actions/checkout@v5
5757
- uses: actions/setup-python@v5
5858
name: Install Python ${{ inputs.python_version }}
5959
with:

.github/workflows/check_pr_title.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
runs-on: ubuntu-latest
2828
if: ${{ !contains(github.event.pull_request.labels.*.name, 'skip check PR title') }}
2929
steps:
30-
- uses: actions/checkout@v4
30+
- uses: actions/checkout@v5
3131
with:
3232
ref: ${{ github.event.pull_request.head.ref }}
3333
repository: ${{ github.event.pull_request.head.repo.full_name }}

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343

4444
steps:
4545
- name: Checkout repository
46-
uses: actions/checkout@v4
46+
uses: actions/checkout@v5
4747

4848
# Initializes the CodeQL tools for scanning.
4949
- name: Initialize CodeQL

.github/workflows/make_release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
attestations: write
1616
id-token: write
1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@v5
1919
with:
2020
fetch-depth: 0
2121
- uses: hynek/build-and-inspect-python-package@v2
@@ -31,7 +31,7 @@ jobs:
3131
os: ["ubuntu-22.04", "windows-2022", "macos-13", "macos-14"]
3232
runs-on: ${{ matrix.os }}
3333
steps:
34-
- uses: actions/checkout@v4
34+
- uses: actions/checkout@v5
3535
- uses: actions/setup-python@v5
3636
with:
3737
python-version: "3.12"
@@ -76,7 +76,7 @@ jobs:
7676
- build_pyinstaller_bundle
7777
runs-on: ubuntu-latest
7878
steps:
79-
- uses: actions/checkout@v4
79+
- uses: actions/checkout@v5
8080
- uses: actions/download-artifact@v5
8181
with:
8282
pattern: 'PartSeg_bundle_*'

.github/workflows/semgrep.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828

2929
steps:
3030
# Fetch project source with GitHub Actions Checkout.
31-
- uses: actions/checkout@v4
31+
- uses: actions/checkout@v5
3232
# Run the "semgrep ci" command on the command line of the docker image.
3333
- run: semgrep ci
3434
env:

.github/workflows/test_napari_repo.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
name: Download test data
1717
runs-on: ubuntu-24.04
1818
steps:
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v5
2020
- shell: bash
2121
run: bash build_utils/download_data.sh
2222
- name: Upload test data
@@ -37,7 +37,7 @@ jobs:
3737
python: ['3.10', '3.11', '3.12']
3838
napari_version: ['repo']
3939
steps:
40-
- uses: actions/checkout@v4
40+
- uses: actions/checkout@v5
4141

4242
- name: Set up Python ${{ matrix.python }}
4343
uses: actions/setup-python@v5

.github/workflows/test_prereleases.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
name: Download test data
2828
runs-on: ubuntu-24.04
2929
steps:
30-
- uses: actions/checkout@v4
30+
- uses: actions/checkout@v5
3131
- shell: bash
3232
run: bash build_utils/download_data.sh
3333
- name: Upload test data
@@ -48,7 +48,7 @@ jobs:
4848
platform: [windows-2022, macos-14, ubuntu-24.04]
4949
python: [3.12]
5050
steps:
51-
- uses: actions/checkout@v4
51+
- uses: actions/checkout@v5
5252

5353
- name: Set up Python ${{ matrix.python }}
5454
uses: actions/setup-python@v5
@@ -119,7 +119,7 @@ jobs:
119119
name: "Test pyinstaller build"
120120
runs-on: "ubuntu-latest"
121121
steps:
122-
- uses: actions/checkout@v4
122+
- uses: actions/checkout@v5
123123
- uses: actions/setup-python@v5
124124
name: Install Python
125125
with:

.github/workflows/tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
name: Action lint
2222
runs-on: ubuntu-latest
2323
steps:
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@v5
2525
- name: Check workflow files
2626
run: |
2727
bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash)
@@ -32,7 +32,7 @@ jobs:
3232
name: Download test data
3333
runs-on: ubuntu-22.04
3434
steps:
35-
- uses: actions/checkout@v4
35+
- uses: actions/checkout@v5
3636
- shell: bash
3737
run: bash build_utils/download_data.sh
3838
- name: Upload test data
@@ -152,7 +152,7 @@ jobs:
152152
runs-on: ubuntu-latest
153153
needs: [test_coverage, test_minimal]
154154
steps:
155-
- uses: actions/checkout@v4
155+
- uses: actions/checkout@v5
156156
- uses: actions/setup-python@v5
157157
with:
158158
python-version: "3.x"
@@ -194,7 +194,7 @@ jobs:
194194
runs-on: ubuntu-24.04
195195
needs: download_data
196196
steps:
197-
- uses: actions/checkout@v4
197+
- uses: actions/checkout@v5
198198
- name: Setup Miniconda
199199
uses: conda-incubator/setup-miniconda@v3
200200
with:
@@ -253,7 +253,7 @@ jobs:
253253
runs-on: ubuntu-latest
254254

255255
steps:
256-
- uses: actions/checkout@v4
256+
- uses: actions/checkout@v5
257257
with:
258258
fetch-depth: 0
259259
- uses: hynek/build-and-inspect-python-package@v2

.github/workflows/upgrade-dependencies.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
# It doesn't matter if it's deleted when merged, it'll be re-created
1616
BRANCH_NAME: auto-dependency-upgrades
1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@v5
1919
# with:
2020
# # [Optional] Use a separate key to automatically execute checks on the resulting PR
2121
# # https://github.com/peter-evans/create-pull-request/blob/main/docs/concepts-guidelines.md#triggering-further-workflow-runs

0 commit comments

Comments
 (0)