Skip to content

Commit aaae1a3

Browse files
Update all dependencies
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 2f620d1 commit aaae1a3

3 files changed

Lines changed: 125 additions & 122 deletions

File tree

.github/workflows/build.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Check out code
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v5
1919
- name: Update version number
2020
if: startsWith(github.ref, 'refs/tags/')
2121
run: sed -i -e "s/0.0.0/${GITHUB_REF##*/}/" pyproject.toml
2222
- name: Set up Python
23-
uses: actions/setup-python@v5
23+
uses: actions/setup-python@v6
2424
with:
2525
python-version: ${{ matrix.python-version }}
2626
- name: Check isort, black, and flake8
@@ -55,21 +55,21 @@ jobs:
5555
run: poetry build
5656
- name: Upload dist artifact
5757
if: ${{ matrix.python-version == vars.ARCALOT_PYTHON_VERSION }}
58-
uses: actions/upload-artifact@v4
58+
uses: actions/upload-artifact@v5
5959
with:
6060
name: dist
6161
path: dist
6262
if-no-files-found: error
6363
- name: Upload coverage HTML artifact
6464
if: ${{ matrix.python-version == vars.ARCALOT_PYTHON_VERSION }}
65-
uses: actions/upload-artifact@v4
65+
uses: actions/upload-artifact@v5
6666
with:
6767
name: coverage
6868
path: htmlcov
6969
if-no-files-found: error
7070
- name: Upload Sphinx documentation
7171
if: ${{ matrix.python-version == vars.ARCALOT_PYTHON_VERSION }}
72-
uses: actions/upload-artifact@v4
72+
uses: actions/upload-artifact@v5
7373
with:
7474
name: documentation
7575
path: docs/build/html
@@ -82,9 +82,9 @@ jobs:
8282
if: startsWith(github.ref, 'refs/tags/')
8383
steps:
8484
- name: Check out code
85-
uses: actions/checkout@v4
85+
uses: actions/checkout@v5
8686
- name: Download artifacts
87-
uses: actions/download-artifact@v4
87+
uses: actions/download-artifact@v6
8888
with:
8989
name: dist
9090
path: dist

0 commit comments

Comments
 (0)