Skip to content

Commit a12585d

Browse files
chore: bump the actions group across 1 directory with 6 updates
Bumps the actions group with 6 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `5` | `6` | | [actions/setup-python](https://github.com/actions/setup-python) | `5` | `6` | | [actions/cache](https://github.com/actions/cache) | `4` | `5` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `5` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `5` | `6` | | [sigstore/gh-action-sigstore-python](https://github.com/sigstore/gh-action-sigstore-python) | `3.0.1` | `3.2.0` | Updates `actions/checkout` from 5 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...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/cache` from 4 to 5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4...v5) 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 5 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v5...v6) Updates `sigstore/gh-action-sigstore-python` from 3.0.1 to 3.2.0 - [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.1...v3.2.0) --- 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/cache dependency-version: '5' 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: sigstore/gh-action-sigstore-python dependency-version: 3.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 0d7c66c commit a12585d

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

.github/workflows/build-test.yml

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

1818
- name: Set up Python ${{ matrix.python-version }}
19-
uses: actions/setup-python@v5
19+
uses: actions/setup-python@v6
2020
with:
2121
python-version: ${{ matrix.python-version }}
2222

@@ -30,7 +30,7 @@ jobs:
3030
run: echo "::set-output name=dir::$(pip cache dir)"
3131

3232
- name: Cache dependencies
33-
uses: actions/cache@v4
33+
uses: actions/cache@v5
3434
with:
3535
path: ${{ steps.pip-cache.outputs.dir }}
3636
key: ${{ runner.os }}-pip-${{ hashFiles('pyproject.toml') }}
@@ -61,10 +61,10 @@ jobs:
6161
build-artifact:
6262
runs-on: ubuntu-latest
6363
steps:
64-
- uses: actions/checkout@v5
64+
- uses: actions/checkout@v6
6565

6666
- name: Setup Python
67-
uses: actions/setup-python@v5
67+
uses: actions/setup-python@v6
6868
with:
6969
python-version: "3.9"
7070
cache: "pip"
@@ -87,7 +87,7 @@ jobs:
8787
ls -lh dist/
8888
8989
- name: Upload artifact
90-
uses: actions/upload-artifact@v4
90+
uses: actions/upload-artifact@v5
9191
with:
9292
name: pyos-sphinx-theme-artifact
9393
path: dist/

.github/workflows/publish-pypi.yml

Lines changed: 6 additions & 6 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@v5
19+
uses: actions/checkout@v6
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)
@@ -27,7 +27,7 @@ jobs:
2727
run: git fetch origin 'refs/tags/*:refs/tags/*'
2828

2929
- name: Setup Python
30-
uses: actions/setup-python@v5
30+
uses: actions/setup-python@v6
3131
with:
3232
python-version: "3.10"
3333
- name: Install Hatch
@@ -43,7 +43,7 @@ jobs:
4343
ls -lh dist/
4444
# Store an artifact of the build to use in the publish step below
4545
- name: Store the distribution packages
46-
uses: actions/upload-artifact@v4
46+
uses: actions/upload-artifact@v5
4747
with:
4848
name: python-package-distributions
4949
path: dist/
@@ -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@v5
65+
uses: actions/download-artifact@v6
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@v5
87+
uses: actions/download-artifact@v6
8888
with:
8989
name: python-package-distributions
9090
path: dist/
9191
- name: Sign the dists with Sigstore
92-
uses: sigstore/gh-action-sigstore-python@v3.0.1
92+
uses: sigstore/gh-action-sigstore-python@v3.2.0
9393
with:
9494
inputs: >-
9595
./dist/*.tar.gz

0 commit comments

Comments
 (0)