Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitf5451e5

Browse files
Bump the github-actions group across 1 directory with 6 updates (#314)
* Bump the github-actions group across 1 directory with 6 updatesBumps the github-actions group with 6 updates in the / directory:| Package | From | To || --- | --- | --- || [actions/checkout](https://github.com/actions/checkout) | `4` | `5` || [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.3.0` | `6.0.0` || [codecov/codecov-action](https://github.com/codecov/codecov-action) | `5.4.3` | `5.5.1` || [pypa/gh-action-pypi-publish](https://github.com/pypa/gh-action-pypi-publish) | `1.12.4` | `1.13.0` |Updates `actions/checkout` from 4 to 5- [Release notes](https://github.com/actions/checkout/releases)- [Commits](actions/checkout@v4...v5)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.3.0 to 6.0.0- [Release notes](https://github.com/actions/download-artifact/releases)- [Commits](actions/download-artifact@v4.3.0...v6.0.0)Updates `codecov/codecov-action` from 5.4.3 to 5.5.1- [Release notes](https://github.com/codecov/codecov-action/releases)- [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md)- [Commits](codecov/codecov-action@18283e0...5a10915)Updates `pypa/gh-action-pypi-publish` from 1.12.4 to 1.13.0- [Release notes](https://github.com/pypa/gh-action-pypi-publish/releases)- [Commits](pypa/gh-action-pypi-publish@76f52bc...ed0c539)---updated-dependencies:- dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions- dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions- dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions- dependency-name: actions/download-artifact dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions- dependency-name: codecov/codecov-action dependency-version: 5.5.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions- dependency-name: pypa/gh-action-pypi-publish dependency-version: 1.13.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions...Signed-off-by: dependabot[bot] <support@github.com>* Hash updates to major versions (consistency)---------Signed-off-by: dependabot[bot] <support@github.com>Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>Co-authored-by: Sam Cunliffe <samcunliffe@users.noreply.github.com>
1 parent735bdeb commitf5451e5

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

‎.github/workflows/docs.yml‎

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

25-
-uses:actions/setup-python@v5
25+
-uses:actions/setup-python@v6
2626
with:
2727
python-version:"3.13"
2828

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

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

‎.github/workflows/test_and_deploy.yml‎

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ jobs:
2323
name:precommit
2424
runs-on:ubuntu-latest
2525
steps:
26-
-uses:actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683#v4.2.2
26+
-uses:actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8#v5.0.0
2727
with:
2828
fetch-depth:0
29-
-uses:actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55#v5.5.0
29+
-uses:actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c#v6.0.0
3030
with:
3131
python-version:"3.x"
3232
-uses:pre-commit/action@2c7b3805fd2a0fd8c1884dcaebf91fc102a13ecd# v3.0.1
@@ -42,12 +42,12 @@ jobs:
4242
python-version:["3.11", "3.12", "3.13"]
4343

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

4949
-name:Set up Python ${{ matrix.python-version }}
50-
uses:actions/setup-python@v5
50+
uses:actions/setup-python@v6
5151
with:
5252
python-version:${{ matrix.python-version }}
5353

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

7373
-name:Upload pytest test results
74-
uses:actions/upload-artifact@v4
74+
uses:actions/upload-artifact@v5
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@18283e04ce6e62d37312384ff67231eb8fd56d24# v5
82+
uses:codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7# 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,11 +98,11 @@ jobs:
9898
permissions:
9999
id-token:write
100100
steps:
101-
-uses:actions/checkout@v4
101+
-uses:actions/checkout@v5
102102
with:
103103
persist-credentials:false
104104
-name:Set up Python
105-
uses:actions/setup-python@v5
105+
uses:actions/setup-python@v6
106106
with:
107107
python-version:"3.x"
108108
-name:Install build
@@ -116,4 +116,4 @@ jobs:
116116
python -m build .
117117
118118
-name:Publish package
119-
uses:pypa/gh-action-pypi-publish@76f52bc884231f62b9a034ebfe128415bbaabdfc# v1.12.4
119+
uses:pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e# v1.13.0

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp