Skip to content

Commit

Permalink
[ci] Update actions to Node 20 version (#126)
Browse files Browse the repository at this point in the history
  • Loading branch information
sciencewhiz authored Jun 23, 2024
1 parent fe2c427 commit a1b5f9f
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: '3.x'
cache: pip
Expand All @@ -35,7 +35,7 @@ jobs:
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3.8"
cache: pip
Expand All @@ -57,7 +57,7 @@ jobs:
python -m pip install build
python -m build
- name: Upload sdist and wheel artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: my-dist
path: dist/*
Expand All @@ -74,7 +74,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
Expand All @@ -89,7 +89,7 @@ jobs:
python -m pip install -r dev-requirements.txt
python -m pip install "sphinx${{ matrix.sphinx-version }}"
- name: Download sdist and wheel artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: my-dist
path: dist
Expand All @@ -113,7 +113,7 @@ jobs:
with:
fetch-depth: 0
- name: Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.x'
cache: pip
Expand All @@ -132,7 +132,7 @@ jobs:
if: contains(github.ref, 'refs/tags/') && github.repository_owner == 'wpilibsuite'
steps:
- name: Download sdist and wheel artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: my-dist
path: dist
Expand Down

0 comments on commit a1b5f9f

Please sign in to comment.