Skip to content

Commit 18caef9

Browse files
committed
Update github actions
1 parent 409cb9c commit 18caef9

1 file changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/dist.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ jobs:
1818
check:
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v6
2222
- uses: psf/black@stable
2323

2424
build:
2525
runs-on: ubuntu-latest
2626

2727
steps:
28-
- uses: actions/checkout@v4
29-
- uses: actions/setup-python@v5
28+
- uses: actions/checkout@v6
29+
- uses: actions/setup-python@v6
3030
with:
3131
python-version: "3.9"
3232

@@ -36,7 +36,7 @@ jobs:
3636
run: python -m build
3737

3838
- name: Upload build artifacts
39-
uses: actions/upload-artifact@v4
39+
uses: actions/upload-artifact@v7
4040
with:
4141
name: dist
4242
path: dist
@@ -71,13 +71,13 @@ jobs:
7171
container: python:3.14-bookworm
7272

7373
steps:
74-
- uses: actions/checkout@v4
75-
- uses: actions/setup-python@v5
74+
- uses: actions/checkout@v6
75+
- uses: actions/setup-python@v6
7676
with:
7777
python-version: ${{ matrix.python_version }}
7878

7979
- name: Download build artifacts
80-
uses: actions/download-artifact@v4
80+
uses: actions/download-artifact@v8
8181
with:
8282
name: dist
8383
path: dist
@@ -113,7 +113,7 @@ jobs:
113113

114114
steps:
115115
- name: Download build artifacts
116-
uses: actions/download-artifact@v4
116+
uses: actions/download-artifact@v8
117117
with:
118118
name: dist
119119
path: dist
@@ -159,15 +159,15 @@ jobs:
159159
image: "${{ matrix.os.container }}"
160160

161161
steps:
162-
- uses: actions/checkout@v4
162+
- uses: actions/checkout@v6
163163
if: (inputs.enable_raspbian && startsWith(matrix.os.name, 'raspbian')) || (inputs.enable_roborio && matrix.os.name == 'roborio')
164164

165165
- name: Show installed packages
166166
shell: bash
167167
run: |
168168
/build/venv/bin/cross-python -m pip list
169169
170-
- uses: actions/download-artifact@v4
170+
- uses: actions/download-artifact@v8
171171
with:
172172
name: dist
173173
path: dist/
@@ -192,7 +192,7 @@ jobs:
192192
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
193193

194194
steps:
195-
- uses: actions/download-artifact@v4
195+
- uses: actions/download-artifact@v8
196196
with:
197197
name: dist
198198
path: dist/

0 commit comments

Comments
 (0)