Skip to content

Commit 392ddd0

Browse files
build(deps): bump the github-actions group across 1 directory with 5 updates
Bumps the github-actions group with 5 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/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `5` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `5` | `6` | | [pypa/gh-action-pypi-publish](https://github.com/pypa/gh-action-pypi-publish) | `1.12.4` | `1.13.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/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 `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@v1.12.4...v1.13.0) --- 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/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' dependency-type: direct:production update-type: version-update:semver-major 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] <[email protected]>
1 parent 116ef88 commit 392ddd0

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

.github/workflows/ci.yaml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818

1919
steps:
2020
- name: Checkout repository
21-
uses: actions/checkout@v5
21+
uses: actions/checkout@v6
2222

2323
- name: Set up Python ${{ matrix.python-version }}
24-
uses: actions/setup-python@v5
24+
uses: actions/setup-python@v6
2525
with:
2626
python-version: ${{ matrix.python-version }}
2727

@@ -77,11 +77,11 @@ jobs:
7777
pre-commit:
7878
runs-on: ubuntu-22.04
7979
steps:
80-
- uses: actions/checkout@v5
80+
- uses: actions/checkout@v6
8181
with:
8282
persist-credentials: false
8383

84-
- uses: actions/setup-python@v5
84+
- uses: actions/setup-python@v6
8585
with:
8686
python-version: "3.12"
8787
- uses: pre-commit/[email protected]
@@ -92,12 +92,12 @@ jobs:
9292
runs-on: ubuntu-22.04
9393

9494
steps:
95-
- uses: actions/checkout@v5
95+
- uses: actions/checkout@v6
9696
with:
9797
persist-credentials: false
9898

9999
- name: Set up Python
100-
uses: actions/setup-python@v5
100+
uses: actions/setup-python@v6
101101
with:
102102
python-version: "3.12"
103103

@@ -107,7 +107,7 @@ jobs:
107107
poetry build
108108
109109
- name: Upload artifacts 📦
110-
uses: actions/upload-artifact@v4
110+
uses: actions/upload-artifact@v5
111111
with:
112112
name: pysatl-criterion-build
113113
path: |
@@ -126,16 +126,16 @@ jobs:
126126
id-token: write
127127

128128
steps:
129-
- uses: actions/checkout@v5
129+
- uses: actions/checkout@v6
130130
with:
131131
persist-credentials: false
132132

133133
- name: Download artifact 📦
134-
uses: actions/download-artifact@v5
134+
uses: actions/download-artifact@v6
135135
with:
136136
pattern: pysatl*-build
137137
path: dist
138138
merge-multiple: true
139139

140140
- name: Publish to PyPI
141-
uses: pypa/gh-action-pypi-publish@v1.12.4
141+
uses: pypa/gh-action-pypi-publish@v1.13.0

.github/workflows/deploy-docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919
name: Deploy Docs through mike
2020
runs-on: ubuntu-latest
2121
steps:
22-
- uses: actions/checkout@v5
22+
- uses: actions/checkout@v6
2323

2424
- name: Set up Python
25-
uses: actions/setup-python@v5
25+
uses: actions/setup-python@v6
2626
with:
2727
python-version: '3.12'
2828

0 commit comments

Comments
 (0)