Skip to content

Commit 6027e7c

Browse files
Bump the github-actions group across 1 directory with 5 updates (#320)
Bumps the github-actions group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `5` | `6` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `5` | `6` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `6.0.0` | `7.0.0` | | [JamesIves/github-pages-deploy-action](https://github.com/jamesives/github-pages-deploy-action) | `4.7.3` | `4.7.6` | | [codecov/codecov-action](https://github.com/codecov/codecov-action) | `5.5.1` | `5.5.2` | Updates `actions/checkout` from 5 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Commits](actions/checkout@v5...v6) Updates `actions/upload-artifact` from 5 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v5...v6) Updates `actions/download-artifact` from 6.0.0 to 7.0.0 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v6.0.0...v7.0.0) Updates `JamesIves/github-pages-deploy-action` from 4.7.3 to 4.7.6 - [Release notes](https://github.com/jamesives/github-pages-deploy-action/releases) - [Commits](JamesIves/github-pages-deploy-action@6c2d9db...9d877ee) Updates `codecov/codecov-action` from 5.5.1 to 5.5.2 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](codecov/codecov-action@5a10915...671740a) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: JamesIves/github-pages-deploy-action dependency-version: 4.7.6 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: codecov/codecov-action dependency-version: 5.5.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent a922dd6 commit 6027e7c

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

.github/workflows/docs.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
name: Build & Upload Artifact
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: actions/checkout@v5
21+
- uses: actions/checkout@v6
2222
with:
2323
persist-credentials: false
2424

@@ -41,7 +41,7 @@ jobs:
4141
working-directory: ./docs
4242

4343
- name: Upload artifact
44-
uses: actions/upload-artifact@v5
44+
uses: actions/upload-artifact@v6
4545
with:
4646
name: docs
4747
path: docs/_build
@@ -52,15 +52,15 @@ jobs:
5252
needs: build-docs
5353
if: contains(github.ref, 'tags')
5454
steps:
55-
- uses: actions/checkout@v5
55+
- uses: actions/checkout@v6
5656
with:
5757
persist-credentials: false
58-
- uses: actions/download-artifact@v6.0.0
58+
- uses: actions/download-artifact@v7.0.0
5959
with:
6060
name: docs
6161

6262
- name: Push to GitHub pages
63-
uses: JamesIves/github-pages-deploy-action@6c2d9db40f9296374acc17b90404b6e8864128c8 # v4
63+
uses: JamesIves/github-pages-deploy-action@9d877eea73427180ae43cf98e8914934fe157a1a # v4
6464
with:
6565
folder: html
6666
ssh-key: ${{ secrets.DEPLOY_KEY }}

.github/workflows/test_and_deploy.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
name: precommit
2424
runs-on: ubuntu-latest
2525
steps:
26-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
26+
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
2727
with:
2828
fetch-depth: 0
2929
- uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
@@ -42,7 +42,7 @@ jobs:
4242
python-version: ["3.11", "3.12", "3.13"]
4343

4444
steps:
45-
- uses: actions/checkout@v5
45+
- uses: actions/checkout@v6
4646
with:
4747
persist-credentials: false
4848

@@ -71,15 +71,15 @@ jobs:
7171
run: python -m tox
7272

7373
- name: Upload pytest test results
74-
uses: actions/upload-artifact@v5
74+
uses: actions/upload-artifact@v6
7575
with:
7676
name: pytest-results-${{ matrix.platform }} py${{ matrix.python-version }}
7777
path: reports/
7878
# Use always() to always run this step to publish test results when there are test failures
7979
if: ${{ always() }}
8080

8181
- name: Coverage
82-
uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 # v5
82+
uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5
8383
# Don't run coverage on merge queue CI to avoid duplicating reports
8484
# to codecov. See https://github.com/matplotlib/napari-matplotlib/issues/155
8585
if: github.event_name != 'merge_group'
@@ -98,7 +98,7 @@ jobs:
9898
permissions:
9999
id-token: write
100100
steps:
101-
- uses: actions/checkout@v5
101+
- uses: actions/checkout@v6
102102
with:
103103
persist-credentials: false
104104
- name: Set up Python

0 commit comments

Comments
 (0)