Skip to content

Commit a67669f

Browse files
ci(dependabot): bump the actions group across 1 directory with 5 updates (#380)
Bumps the actions group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `6` | | [actions/setup-python](https://github.com/actions/setup-python) | `5` | `6` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `5` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `4` | `6` | | [actions/github-script](https://github.com/actions/github-script) | `7` | `8` | Updates `actions/checkout` from 4 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v6) Updates `actions/setup-python` from 5 to 6 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v5...v6) Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) Updates `actions/download-artifact` from 4 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v6) Updates `actions/github-script` from 7 to 8 - [Release notes](https://github.com/actions/github-script/releases) - [Commits](actions/github-script@v7...v8) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/github-script dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: LucaMarconato <[email protected]>
1 parent 39bbb38 commit a67669f

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

.github/workflows/benchmarks.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,11 @@ jobs:
5959
steps:
6060
# We need the full repo to avoid this issue
6161
# https://github.com/actions/checkout/issues/23
62-
- uses: actions/checkout@v4
62+
- uses: actions/checkout@v6
6363
with:
6464
fetch-depth: 0
6565

66-
- uses: actions/setup-python@v5
66+
- uses: actions/setup-python@v6
6767
name: Install Python
6868
with:
6969
python-version: "3.11"
@@ -170,7 +170,7 @@ jobs:
170170
171171
fi
172172
173-
- uses: actions/upload-artifact@v4
173+
- uses: actions/upload-artifact@v5
174174
if: always()
175175
with:
176176
name: asv-benchmark-results-${{ github.run_id }}-${{ github.run_number }}-${{ github.run_attempt }}-${{ matrix.benchmark-name }}
@@ -182,13 +182,13 @@ jobs:
182182
if: always()
183183
steps:
184184
- name: Download artifact
185-
uses: actions/download-artifact@v4
185+
uses: actions/download-artifact@v6
186186
with:
187187
pattern: asv-benchmark-results*
188188
path: asv_result
189189
merge-multiple: true
190190
- name: Upload artifact
191-
uses: actions/upload-artifact@v4
191+
uses: actions/upload-artifact@v5
192192
with:
193193
name: asv-benchmark-results-${{ github.run_id }}-${{ github.run_number }}-${{ github.run_attempt }}
194194
path: asv_result

.github/workflows/benchmarks_report.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
runs-on: ubuntu-latest
2525
steps:
2626
- name: "Download artifact"
27-
uses: actions/github-script@v7
27+
uses: actions/github-script@v8
2828
with:
2929
script: |
3030
let allArtifacts = await github.rest.actions.listWorkflowRunArtifacts({
@@ -68,7 +68,7 @@ jobs:
6868
6969
- name: "Comment on PR"
7070
if: env.PR_NUMBER != ''
71-
uses: actions/github-script@v7
71+
uses: actions/github-script@v8
7272
with:
7373
github-token: ${{ secrets.GITHUB_TOKEN }}
7474
script: |
@@ -84,7 +84,7 @@ jobs:
8484
8585
- name: "Remove run-benchmarks label"
8686
if: env.PR_NUMBER != ''
87-
uses: actions/github-script@v7
87+
uses: actions/github-script@v8
8888
with:
8989
github-token: ${{ secrets.GITHUB_TOKEN }}
9090
script: |

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
if: startsWith(github.ref, 'refs/tags/v')
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v6
1414
- uses: hynek/build-and-inspect-python-package@v2
1515

1616
upload-to-pypi:
@@ -21,7 +21,7 @@ jobs:
2121

2222
steps:
2323
- name: Download built artifact to dist/
24-
uses: actions/download-artifact@v4
24+
uses: actions/download-artifact@v6
2525
with:
2626
name: Packages
2727
path: dist

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ jobs:
2727
python-version: ["3.11", "3.13"]
2828

2929
steps:
30-
- uses: actions/checkout@v4
30+
- uses: actions/checkout@v6
3131

3232
- name: Set up Python ${{ matrix.python-version }}
33-
uses: actions/setup-python@v5
33+
uses: actions/setup-python@v6
3434
with:
3535
python-version: ${{ matrix.python-version }}
3636

@@ -66,7 +66,7 @@ jobs:
6666

6767
- name: Archive figures generated during testing
6868
if: always()
69-
uses: actions/upload-artifact@v4
69+
uses: actions/upload-artifact@v5
7070
with:
7171
name: plotting-results-${{ matrix.python-version }}-${{ matrix.platform }}
7272
path: /Users/runner/work/napari-spatialdata/napari-spatialdata/tests/plots/generated/*

0 commit comments

Comments
 (0)