Skip to content

Commit 0fd2819

Browse files
dependabot[bot]facutuesca
authored andcommitted
Bump the actions group with 5 updates
Bumps the actions group with 5 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `3` | `4` | | [actions/setup-python](https://github.com/actions/setup-python) | `4` | `5` | | [actions/upload-pages-artifact](https://github.com/actions/upload-pages-artifact) | `1` | `3` | | [actions/deploy-pages](https://github.com/actions/deploy-pages) | `1` | `4` | | [sigstore/gh-action-sigstore-python](https://github.com/sigstore/gh-action-sigstore-python) | `1.2.1` | `2.1.1` | Updates `actions/checkout` from 3 to 4 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v3...v4) Updates `actions/setup-python` from 4 to 5 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v4...v5) Updates `actions/upload-pages-artifact` from 1 to 3 - [Release notes](https://github.com/actions/upload-pages-artifact/releases) - [Commits](actions/upload-pages-artifact@v1...v3) Updates `actions/deploy-pages` from 1 to 4 - [Release notes](https://github.com/actions/deploy-pages/releases) - [Commits](actions/deploy-pages@v1...v4) Updates `sigstore/gh-action-sigstore-python` from 1.2.1 to 2.1.1 - [Release notes](https://github.com/sigstore/gh-action-sigstore-python/releases) - [Commits](sigstore/gh-action-sigstore-python@v1.2.1...v2.1.1) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/upload-pages-artifact dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/deploy-pages dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: sigstore/gh-action-sigstore-python dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 58e76b6 commit 0fd2819

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/docs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
build:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v3
12+
- uses: actions/checkout@v4
1313

1414
- uses: actions/setup-python@v5
1515
with:
@@ -26,7 +26,7 @@ jobs:
2626
make doc
2727
2828
- name: upload docs artifact
29-
uses: actions/upload-pages-artifact@v1
29+
uses: actions/upload-pages-artifact@v3
3030
with:
3131
path: ./html/
3232

@@ -42,4 +42,4 @@ jobs:
4242
url: ${{ steps.deployment.outputs.page_url }}
4343
steps:
4444
- id: deployment
45-
uses: actions/deploy-pages@v1
45+
uses: actions/deploy-pages@v4

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
lint:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v3
13+
- uses: actions/checkout@v4
1414

1515
- uses: actions/setup-python@v5
1616
with:

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
name: upload release to PyPI
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: actions/checkout@v3
21+
- uses: actions/checkout@v4
2222

2323
- uses: actions/setup-python@v5
2424
with:
@@ -36,7 +36,7 @@ jobs:
3636
uses: pypa/gh-action-pypi-publish@release/v1
3737

3838
- name: sign
39-
uses: sigstore/gh-action-sigstore-python@v1.2.1
39+
uses: sigstore/gh-action-sigstore-python@v2.1.1
4040
with:
4141
inputs: ./dist/*.tar.gz ./dist/*.whl
4242
release-signing-artifacts: true

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ jobs:
1717
- "3.12"
1818
runs-on: ubuntu-latest
1919
steps:
20-
- uses: actions/checkout@v3
20+
- uses: actions/checkout@v4
2121

22-
- uses: actions/setup-python@v4
22+
- uses: actions/setup-python@v5
2323
with:
2424
python-version: ${{ matrix.python }}
2525
cache: "pip"

0 commit comments

Comments
 (0)