Skip to content

Commit

Permalink
Updated workflow action versions (#224)
Browse files Browse the repository at this point in the history
* Updated workflow action versions

---------

Co-authored-by: Adrian Damian <[email protected]>
  • Loading branch information
andamian and Adrian Damian authored Apr 5, 2024
1 parent 8ab9dbd commit 2bb69f2
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/cibuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
egginfo:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install tox
Expand All @@ -28,15 +28,15 @@ jobs:
strategy:
fail-fast: true
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.7","3.8","3.9","3.10","3.11","3.12"]
package: [vos]
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install tox
Expand All @@ -53,19 +53,19 @@ jobs:
runs-on: ubuntu-latest
needs: tests
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Setup Graphviz
uses: ts-graphviz/setup-graphviz@v1
uses: ts-graphviz/setup-graphviz@v2
- name: Install tox
run: python -m pip install --upgrade tox
- name: checkstyle & coverage vos
run: cd vos && tox -e checkstyle && tox -e cov
- name: Upload coverage to codecov
uses: codecov/codecov-action@v1
uses: codecov/codecov-action@v4
with:
files: ./vos/coverage.xml

Expand All @@ -78,9 +78,9 @@ jobs:
id-token: write
if: contains(github.ref, '=')
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Determine the package
Expand All @@ -98,7 +98,7 @@ jobs:
run: |
cd ${{ env.repo_name }}
python -m pip install --upgrade pip
pip install setuptools wheel twine
pip install setuptools wheel
- name: Install package
run: |
cd ${{ env.repo_name }}
Expand Down

0 comments on commit 2bb69f2

Please sign in to comment.