Skip to content

Commit e98d97c

Browse files
chore(deps): bump the dependencies group with 4 updates (#35)
1 parent f468ecc commit e98d97c

3 files changed

Lines changed: 17 additions & 17 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-22.04
2020

2121
steps:
22-
- uses: actions/checkout@v5
22+
- uses: actions/checkout@v6
2323

2424
- uses: actions/setup-python@v6
2525
with:
@@ -31,7 +31,7 @@ jobs:
3131
python -m build
3232
3333
- name: Upload distributions
34-
uses: actions/upload-artifact@v5
34+
uses: actions/upload-artifact@v7
3535
with:
3636
name: release-dists
3737
path: dist/
@@ -55,7 +55,7 @@ jobs:
5555

5656
steps:
5757
- name: Retrieve release distributions
58-
uses: actions/download-artifact@v6
58+
uses: actions/download-artifact@v8
5959
with:
6060
name: release-dists
6161
path: dist/
@@ -72,7 +72,7 @@ jobs:
7272
contents: write # IMPORTANT: mandatory for making GitHub Releases
7373
steps:
7474
- name: Retrieve the package from GitHub actions artifacts
75-
uses: actions/download-artifact@v6
75+
uses: actions/download-artifact@v8
7676
with:
7777
name: release-dists
7878
path: dist/

.github/workflows/qa.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
pre-commit:
1616
runs-on: ubuntu-22.04
1717
steps:
18-
- uses: actions/checkout@v5
18+
- uses: actions/checkout@v6
1919
- uses: actions/setup-python@v6
2020
with:
2121
python-version: "3.9"

.github/workflows/tests.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ jobs:
1818
simpletests:
1919
runs-on: ubuntu-22.04
2020
steps:
21-
- uses: actions/checkout@v5
21+
- uses: actions/checkout@v6
2222
with:
2323
fetch-depth: 0
2424
- name: Setup Pixi
25-
uses: prefix-dev/setup-pixi@v0.9.2
25+
uses: prefix-dev/setup-pixi@v0.9.5
2626
with:
2727
pixi-version: v0.65.0
2828
environments: default
@@ -44,11 +44,11 @@ jobs:
4444
runs-on: ubuntu-22.04
4545
steps:
4646
- name: Checkout repository
47-
uses: actions/checkout@v5
47+
uses: actions/checkout@v6
4848
with:
4949
fetch-depth: 0
5050
- name: Setup Pixi
51-
uses: prefix-dev/setup-pixi@v0.9.2
51+
uses: prefix-dev/setup-pixi@v0.9.5
5252
with:
5353
pixi-version: v0.65.0
5454
environments: ${{ matrix.pixi_environment }}
@@ -57,7 +57,7 @@ jobs:
5757
env:
5858
COVERAGE_FILE: ".coverage.${{ matrix.pixi_environment }}"
5959
- name: Store coverage report
60-
uses: actions/upload-artifact@v5
60+
uses: actions/upload-artifact@v7
6161
with:
6262
name: coverage-${{ matrix.pixi_environment }}
6363
path: .coverage.${{ matrix.pixi_environment }}
@@ -77,9 +77,9 @@ jobs:
7777
contents: write
7878
steps:
7979
- name: Checkout repository
80-
uses: actions/checkout@v5
80+
uses: actions/checkout@v6
8181
- name: Retrieve coverage artifacts
82-
uses: actions/download-artifact@v6
82+
uses: actions/download-artifact@v8
8383
id: download
8484
with:
8585
pattern: coverage-*
@@ -91,7 +91,7 @@ jobs:
9191
GITHUB_TOKEN: ${{ github.token }}
9292
MERGE_COVERAGE_FILES: true
9393
- name: Store Pull Request comment to be posted
94-
uses: actions/upload-artifact@v5
94+
uses: actions/upload-artifact@v7
9595
if: steps.coverage_comment.outputs.COMMENT_FILE_WRITTEN == 'true'
9696
with:
9797
name: python-coverage-comment-action
@@ -100,11 +100,11 @@ jobs:
100100
doc:
101101
runs-on: ubuntu-22.04
102102
steps:
103-
- uses: actions/checkout@v5
103+
- uses: actions/checkout@v6
104104
with:
105105
fetch-depth: 0
106106
- name: Setup Pixi
107-
uses: prefix-dev/setup-pixi@v0.9.2
107+
uses: prefix-dev/setup-pixi@v0.9.5
108108
with:
109109
pixi-version: v0.65.0
110110
environments: doc
@@ -120,7 +120,7 @@ jobs:
120120
runs-on: ubuntu-22.04
121121
steps:
122122
- name: Checkout project
123-
uses: actions/checkout@v5
123+
uses: actions/checkout@v6
124124
with:
125125
fetch-depth: 0
126126
- name: Install python
@@ -136,7 +136,7 @@ jobs:
136136
- name: Try installing from the new dists
137137
run: pip install dist/*.whl
138138
- name: Produce a GitHub actions artifact (the distributable package)
139-
uses: actions/upload-artifact@v5
139+
uses: actions/upload-artifact@v7
140140
with:
141141
name: dist
142142
path: dist/

0 commit comments

Comments
 (0)