Skip to content

Commit 5d5a0ed

Browse files
ci(deps): bump the actions group across 1 directory with 8 updates
Bumps the actions group with 8 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `5` | | [actions/setup-python](https://github.com/actions/setup-python) | `5` | `6` | | [codecov/codecov-action](https://github.com/codecov/codecov-action) | `4` | `5` | | [actions/upload-pages-artifact](https://github.com/actions/upload-pages-artifact) | `3` | `4` | | [actions/github-script](https://github.com/actions/github-script) | `7` | `8` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `5` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `4` | `6` | | [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv) | `4` | `7` | Updates `actions/checkout` from 4 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) Updates `actions/setup-python` from 5 to 6 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v5...v6) Updates `codecov/codecov-action` from 4 to 5 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](codecov/codecov-action@v4...v5) Updates `actions/upload-pages-artifact` from 3 to 4 - [Release notes](https://github.com/actions/upload-pages-artifact/releases) - [Commits](actions/upload-pages-artifact@v3...v4) Updates `actions/github-script` from 7 to 8 - [Release notes](https://github.com/actions/github-script/releases) - [Commits](actions/github-script@v7...v8) 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 4 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v6) Updates `astral-sh/setup-uv` from 4 to 7 - [Release notes](https://github.com/astral-sh/setup-uv/releases) - [Commits](astral-sh/setup-uv@v4...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' 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: codecov/codecov-action dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/upload-pages-artifact dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/github-script dependency-version: '8' 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: astral-sh/setup-uv dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 5d7141b commit 5d5a0ed

File tree

6 files changed

+50
-50
lines changed

6 files changed

+50
-50
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
python-version: ["3.10", "3.11", "3.12"]
1515

1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v5
1818

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

@@ -40,7 +40,7 @@ jobs:
4040
4141
- name: Upload coverage to Codecov
4242
if: matrix.python-version == '3.12'
43-
uses: codecov/codecov-action@v4
43+
uses: codecov/codecov-action@v5
4444
with:
4545
file: ./coverage.xml
4646
fail_ci_if_error: false
@@ -50,10 +50,10 @@ jobs:
5050
runs-on: ubuntu-latest
5151

5252
steps:
53-
- uses: actions/checkout@v4
53+
- uses: actions/checkout@v5
5454

5555
- name: Set up Python
56-
uses: actions/setup-python@v5
56+
uses: actions/setup-python@v6
5757
with:
5858
python-version: "3.12"
5959

.github/workflows/docs.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,12 @@ jobs:
3838
runs-on: ubuntu-latest
3939
steps:
4040
- name: Checkout
41-
uses: actions/checkout@v4
41+
uses: actions/checkout@v5
4242
with:
4343
fetch-depth: 0
4444

4545
- name: Setup Python
46-
uses: actions/setup-python@v5
46+
uses: actions/setup-python@v6
4747
with:
4848
python-version: '3.11'
4949

@@ -73,7 +73,7 @@ jobs:
7373
cp docs/CNAME site/CNAME
7474
7575
- name: Upload artifact
76-
uses: actions/upload-pages-artifact@v3
76+
uses: actions/upload-pages-artifact@v4
7777
with:
7878
path: ./site
7979

@@ -96,12 +96,12 @@ jobs:
9696
runs-on: ubuntu-latest
9797
steps:
9898
- name: Checkout
99-
uses: actions/checkout@v4
99+
uses: actions/checkout@v5
100100
with:
101101
fetch-depth: 0
102102

103103
- name: Setup Python
104-
uses: actions/setup-python@v5
104+
uses: actions/setup-python@v6
105105
with:
106106
python-version: '3.11'
107107

@@ -128,7 +128,7 @@ jobs:
128128
129129
- name: Comment PR with build status
130130
if: github.event_name == 'pull_request'
131-
uses: actions/github-script@v7
131+
uses: actions/github-script@v8
132132
with:
133133
script: |
134134
github.rest.issues.createComment({

.github/workflows/monitor.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ jobs:
2727

2828
steps:
2929
- name: Checkout repository
30-
uses: actions/checkout@v4
30+
uses: actions/checkout@v5
3131

3232
- name: Set up Python
33-
uses: actions/setup-python@v5
33+
uses: actions/setup-python@v6
3434
with:
3535
python-version: '3.11'
3636

@@ -62,7 +62,7 @@ jobs:
6262
fi
6363
6464
- name: Upload monitoring results
65-
uses: actions/upload-artifact@v4
65+
uses: actions/upload-artifact@v5
6666
if: success() && hashFiles('package_stats.json') != ''
6767
with:
6868
name: package-monitoring-results
@@ -107,7 +107,7 @@ jobs:
107107
108108
- name: Create issue for health problems
109109
if: steps.health_check.outputs.alert_needed == 'true'
110-
uses: actions/github-script@v7
110+
uses: actions/github-script@v8
111111
with:
112112
script: |
113113
const title = `📦 Package Health Alert: ${{ steps.monitor.outputs.health }}`;
@@ -170,7 +170,7 @@ jobs:
170170
171171
- name: Close resolved health issues
172172
if: steps.health_check.outputs.alert_needed == 'false'
173-
uses: actions/github-script@v7
173+
uses: actions/github-script@v8
174174
with:
175175
script: |
176176
// Find open health alert issues
@@ -250,10 +250,10 @@ jobs:
250250

251251
steps:
252252
- name: Checkout repository
253-
uses: actions/checkout@v4
253+
uses: actions/checkout@v5
254254

255255
- name: Download monitoring results
256-
uses: actions/download-artifact@v4
256+
uses: actions/download-artifact@v6
257257
with:
258258
name: package-monitoring-results
259259

@@ -301,7 +301,7 @@ jobs:
301301
EOF
302302
303303
- name: Upload report
304-
uses: actions/upload-artifact@v4
304+
uses: actions/upload-artifact@v5
305305
if: success() && hashFiles('monitoring_report.md') != ''
306306
with:
307307
name: monitoring-report

.github/workflows/publish.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ jobs:
2929
python-version: ["3.10", "3.11", "3.12"]
3030

3131
steps:
32-
- uses: actions/checkout@v4
32+
- uses: actions/checkout@v5
3333

3434
- name: Set up Python ${{ matrix.python-version }}
35-
uses: actions/setup-python@v5
35+
uses: actions/setup-python@v6
3636
with:
3737
python-version: ${{ matrix.python-version }}
3838

@@ -55,7 +55,7 @@ jobs:
5555
5656
- name: Upload coverage to Codecov
5757
if: matrix.python-version == '3.12'
58-
uses: codecov/codecov-action@v4
58+
uses: codecov/codecov-action@v5
5959
with:
6060
file: ./coverage.xml
6161
fail_ci_if_error: false
@@ -68,10 +68,10 @@ jobs:
6868
id-token: write
6969

7070
steps:
71-
- uses: actions/checkout@v4
71+
- uses: actions/checkout@v5
7272

7373
- name: Set up Python
74-
uses: actions/setup-python@v5
74+
uses: actions/setup-python@v6
7575
with:
7676
python-version: "3.12"
7777

@@ -89,7 +89,7 @@ jobs:
8989
python -m twine check dist/*
9090
9191
- name: Upload build artifacts
92-
uses: actions/upload-artifact@v4
92+
uses: actions/upload-artifact@v5
9393
with:
9494
name: dist
9595
path: dist/
@@ -108,7 +108,7 @@ jobs:
108108

109109
steps:
110110
- name: Download build artifacts
111-
uses: actions/download-artifact@v4
111+
uses: actions/download-artifact@v6
112112
with:
113113
name: dist
114114
path: dist/

.github/workflows/release.yml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818
python-version: ["3.10", "3.11", "3.12"]
1919

2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v5
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

@@ -36,7 +36,7 @@ jobs:
3636
3737
- name: Upload coverage to Codecov
3838
if: matrix.python-version == '3.11'
39-
uses: codecov/codecov-action@v4
39+
uses: codecov/codecov-action@v5
4040
with:
4141
file: ./coverage.xml
4242
fail_ci_if_error: false
@@ -45,10 +45,10 @@ jobs:
4545
name: Security Checks
4646
runs-on: ubuntu-latest
4747
steps:
48-
- uses: actions/checkout@v4
48+
- uses: actions/checkout@v5
4949

5050
- name: Set up Python
51-
uses: actions/setup-python@v5
51+
uses: actions/setup-python@v6
5252
with:
5353
python-version: "3.11"
5454

@@ -69,12 +69,12 @@ jobs:
6969
needs: [test, security]
7070

7171
steps:
72-
- uses: actions/checkout@v4
72+
- uses: actions/checkout@v5
7373
with:
7474
fetch-depth: 0
7575

7676
- name: Set up Python
77-
uses: actions/setup-python@v5
77+
uses: actions/setup-python@v6
7878
with:
7979
python-version: "3.11"
8080

@@ -120,7 +120,7 @@ jobs:
120120
twine check dist/*
121121
122122
- name: Upload build artifacts
123-
uses: actions/upload-artifact@v4
123+
uses: actions/upload-artifact@v5
124124
with:
125125
name: dist-${{ steps.version.outputs.VERSION }}
126126
path: dist/
@@ -131,7 +131,7 @@ jobs:
131131
needs: [build]
132132

133133
steps:
134-
- uses: actions/checkout@v4
134+
- uses: actions/checkout@v5
135135
with:
136136
fetch-depth: 0
137137

@@ -142,7 +142,7 @@ jobs:
142142
echo "TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
143143
144144
- name: Download build artifacts
145-
uses: actions/download-artifact@v4
145+
uses: actions/download-artifact@v6
146146
with:
147147
name: dist-${{ steps.version.outputs.VERSION }}
148148
path: dist/
@@ -196,10 +196,10 @@ jobs:
196196
id-token: write # Required for trusted publishing to TestPyPI
197197

198198
steps:
199-
- uses: actions/checkout@v4
199+
- uses: actions/checkout@v5
200200

201201
- name: Set up Python
202-
uses: actions/setup-python@v5
202+
uses: actions/setup-python@v6
203203
with:
204204
python-version: "3.11"
205205

@@ -209,7 +209,7 @@ jobs:
209209
echo "VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_OUTPUT
210210
211211
- name: Download build artifacts
212-
uses: actions/download-artifact@v4
212+
uses: actions/download-artifact@v6
213213
with:
214214
name: dist-${{ steps.version.outputs.VERSION }}
215215
path: dist/
@@ -246,7 +246,7 @@ jobs:
246246

247247
steps:
248248
- name: Set up Python ${{ matrix.python-version }}
249-
uses: actions/setup-python@v5
249+
uses: actions/setup-python@v6
250250
with:
251251
python-version: ${{ matrix.python-version }}
252252

@@ -274,15 +274,15 @@ jobs:
274274
id-token: write # Required for trusted publishing to PyPI
275275

276276
steps:
277-
- uses: actions/checkout@v4
277+
- uses: actions/checkout@v5
278278

279279
- name: Extract version from tag
280280
id: version
281281
run: |
282282
echo "VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_OUTPUT
283283
284284
- name: Download build artifacts
285-
uses: actions/download-artifact@v4
285+
uses: actions/download-artifact@v6
286286
with:
287287
name: dist-${{ steps.version.outputs.VERSION }}
288288
path: dist/
@@ -314,7 +314,7 @@ jobs:
314314

315315
steps:
316316
- name: Set up Python ${{ matrix.python-version }}
317-
uses: actions/setup-python@v5
317+
uses: actions/setup-python@v6
318318
with:
319319
python-version: ${{ matrix.python-version }}
320320

.github/workflows/test.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ jobs:
2525

2626
steps:
2727
- name: Checkout
28-
uses: actions/checkout@v4
28+
uses: actions/checkout@v5
2929
with:
3030
fetch-depth: 0
3131

3232
- name: Set up Python ${{ matrix.python-version }}
33-
uses: actions/setup-python@v5
33+
uses: actions/setup-python@v6
3434
with:
3535
python-version: ${{ matrix.python-version }}
3636

@@ -46,7 +46,7 @@ jobs:
4646
${{ runner.os }}-python-
4747
4848
- name: Install uv
49-
uses: astral-sh/setup-uv@v4
49+
uses: astral-sh/setup-uv@v7
5050
with:
5151
enable-cache: true
5252

@@ -74,7 +74,7 @@ jobs:
7474
7575
- name: Upload coverage to Codecov
7676
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.11'
77-
uses: codecov/codecov-action@v4
77+
uses: codecov/codecov-action@v5
7878
with:
7979
file: ./coverage.xml
8080
flags: unittests
@@ -86,15 +86,15 @@ jobs:
8686
runs-on: ubuntu-latest
8787
steps:
8888
- name: Checkout
89-
uses: actions/checkout@v4
89+
uses: actions/checkout@v5
9090

9191
- name: Set up Python
92-
uses: actions/setup-python@v5
92+
uses: actions/setup-python@v6
9393
with:
9494
python-version: "3.11"
9595

9696
- name: Install uv
97-
uses: astral-sh/setup-uv@v4
97+
uses: astral-sh/setup-uv@v7
9898

9999
- name: Install dependencies
100100
run: |

0 commit comments

Comments
 (0)