Skip to content

Commit

Permalink
ci: update checkout and artifact actions
Browse files Browse the repository at this point in the history
  • Loading branch information
jpgrayson committed Nov 10, 2024
1 parent a28f50d commit 158b472
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
Expand All @@ -31,7 +31,7 @@ jobs:
- name: Upload dist
if: github.repository == 'westerndigitalcorporation/pyvcd'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: pyvcd-dist
path: "dist/*"
Expand All @@ -48,7 +48,7 @@ jobs:

steps:
- name: Retrieve package
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: pyvcd-dist
path: "dist"
Expand All @@ -72,7 +72,7 @@ jobs:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', 'pypy-3.7', 'pypy-3.9']

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
Expand All @@ -90,7 +90,7 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
Expand All @@ -107,7 +107,7 @@ jobs:
if: github.repository == 'westerndigitalcorporation/pyvcd'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
Expand Down

0 comments on commit 158b472

Please sign in to comment.