Skip to content

Commit a1b5f9f

Browse files
authored
[ci] Update actions to Node 20 version (#126)
1 parent fe2c427 commit a1b5f9f

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

Diff for: .github/workflows/workflow.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
steps:
2020
- uses: actions/checkout@v4
21-
- uses: actions/setup-python@v4
21+
- uses: actions/setup-python@v5
2222
with:
2323
python-version: '3.x'
2424
cache: pip
@@ -35,7 +35,7 @@ jobs:
3535
with:
3636
fetch-depth: 0
3737
- name: Set up Python
38-
uses: actions/setup-python@v4
38+
uses: actions/setup-python@v5
3939
with:
4040
python-version: "3.8"
4141
cache: pip
@@ -57,7 +57,7 @@ jobs:
5757
python -m pip install build
5858
python -m build
5959
- name: Upload sdist and wheel artifacts
60-
uses: actions/upload-artifact@v3
60+
uses: actions/upload-artifact@v4
6161
with:
6262
name: my-dist
6363
path: dist/*
@@ -74,7 +74,7 @@ jobs:
7474
steps:
7575
- uses: actions/checkout@v4
7676
- name: Set up Python ${{ matrix.python-version }}
77-
uses: actions/setup-python@v4
77+
uses: actions/setup-python@v5
7878
with:
7979
python-version: ${{ matrix.python-version }}
8080
cache: pip
@@ -89,7 +89,7 @@ jobs:
8989
python -m pip install -r dev-requirements.txt
9090
python -m pip install "sphinx${{ matrix.sphinx-version }}"
9191
- name: Download sdist and wheel artifacts
92-
uses: actions/download-artifact@v3
92+
uses: actions/download-artifact@v4
9393
with:
9494
name: my-dist
9595
path: dist
@@ -113,7 +113,7 @@ jobs:
113113
with:
114114
fetch-depth: 0
115115
- name: Setup Python
116-
uses: actions/setup-python@v4
116+
uses: actions/setup-python@v5
117117
with:
118118
python-version: '3.x'
119119
cache: pip
@@ -132,7 +132,7 @@ jobs:
132132
if: contains(github.ref, 'refs/tags/') && github.repository_owner == 'wpilibsuite'
133133
steps:
134134
- name: Download sdist and wheel artifacts
135-
uses: actions/download-artifact@v3
135+
uses: actions/download-artifact@v4
136136
with:
137137
name: my-dist
138138
path: dist

0 commit comments

Comments
 (0)