Skip to content

Commit

Permalink
Updated used actions versions
Browse files Browse the repository at this point in the history
  • Loading branch information
jchabloz committed Feb 7, 2024
1 parent 4ecfaee commit acf549b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/builddocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ jobs:
name: Build documentation
steps:
- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3"
- name: Install dependencies
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/makefile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
name: Builds VPI library
steps:
- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: true
- name: Install dependencies
Expand All @@ -24,12 +24,12 @@ jobs:
- name: Build and run cunit test
run: cd test;make;cd ..
- name: Upload build artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: libvpi
path: build/verisocks.vpi
- name: Archive cunit test artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: cunit-test-results
path: |
Expand All @@ -43,9 +43,9 @@ jobs:
name: Run pytest
steps:
- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3.7"
- name: Install dependencies
Expand All @@ -55,7 +55,7 @@ jobs:
pip install -e ./python
pip install pytest pytest-cov
- name: Download build artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: libvpi
- name: Check verisocks.vpi
Expand All @@ -67,7 +67,7 @@ jobs:
run: pytest -x --log-cli-level=INFO --cov=verisocks
- name: Archive test logs
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: test-logs
path: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/testdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ jobs:
name: Build documentation
steps:
- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3"
- name: Install dependencies
Expand Down

0 comments on commit acf549b

Please sign in to comment.