Skip to content

Commit 0d7c66c

Browse files
chore: bump the actions group across 1 directory with 4 updates (#44)
Bumps the actions group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/upload-pages-artifact](https://github.com/actions/upload-pages-artifact), [actions/download-artifact](https://github.com/actions/download-artifact) and [sigstore/gh-action-sigstore-python](https://github.com/sigstore/gh-action-sigstore-python). 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) Updates `actions/upload-pages-artifact` from 3 to 4 - [Release notes](https://github.com/actions/upload-pages-artifact/releases) - [Commits](actions/upload-pages-artifact@v3...v4) Updates `actions/download-artifact` from 4 to 5 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v5) Updates `sigstore/gh-action-sigstore-python` from 3.0.0 to 3.0.1 - [Release notes](https://github.com/sigstore/gh-action-sigstore-python/releases) - [Changelog](https://github.com/sigstore/gh-action-sigstore-python/blob/main/CHANGELOG.md) - [Commits](sigstore/gh-action-sigstore-python@v3.0.0...v3.0.1) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/upload-pages-artifact dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: sigstore/gh-action-sigstore-python dependency-version: 3.0.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 9bd1cad commit 0d7c66c

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/build-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
python-version: [ "3.10" ]
1414
runs-on: ${{ matrix.os }}
1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v5
1717

1818
- name: Set up Python ${{ matrix.python-version }}
1919
uses: actions/setup-python@v5
@@ -54,14 +54,14 @@ jobs:
5454
--ignore-urls "https://github.com/pyOpenSci/software-review/issues/18#issuecomment-581752433"
5555
5656
- name: Upload artifact
57-
uses: actions/upload-pages-artifact@v3
57+
uses: actions/upload-pages-artifact@v4
5858
with:
5959
path: ./_build/html
6060

6161
build-artifact:
6262
runs-on: ubuntu-latest
6363
steps:
64-
- uses: actions/checkout@v4
64+
- uses: actions/checkout@v5
6565

6666
- name: Setup Python
6767
uses: actions/setup-python@v5

.github/workflows/publish-pypi.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
environment: build
1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v5
2020
with:
2121
# This fetch element is only important if you are use SCM based
2222
# versioning (that looks at git tags to gather the version)
@@ -62,7 +62,7 @@ jobs:
6262
steps:
6363
# Version 4 doesn't support github enterprise yet
6464
- name: Download all the dists
65-
uses: actions/download-artifact@v4
65+
uses: actions/download-artifact@v5
6666
with:
6767
name: python-package-distributions
6868
path: dist/
@@ -84,12 +84,12 @@ jobs:
8484
id-token: write # this permission is mandatory for sigstore
8585
steps:
8686
- name: Download all the dists
87-
uses: actions/download-artifact@v4
87+
uses: actions/download-artifact@v5
8888
with:
8989
name: python-package-distributions
9090
path: dist/
9191
- name: Sign the dists with Sigstore
92-
uses: sigstore/[email protected].0
92+
uses: sigstore/[email protected].1
9393
with:
9494
inputs: >-
9595
./dist/*.tar.gz

0 commit comments

Comments
 (0)