Skip to content

Commit

Permalink
Updated workflow action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Adrian Damian authored and Adrian Damian committed Apr 5, 2024
1 parent 8ab9dbd commit 587ab4b
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 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 @@ -32,11 +32,11 @@ jobs:
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 587ab4b

Please sign in to comment.