Skip to content

Commit 2bb69f2

Browse files
andamianAdrian Damian
andauthored
Updated workflow action versions (#224)
* Updated workflow action versions --------- Co-authored-by: Adrian Damian <[email protected]>
1 parent 8ab9dbd commit 2bb69f2

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

.github/workflows/cibuild.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ jobs:
1212
egginfo:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v4
1616
- name: Set up Python 3.10
17-
uses: actions/setup-python@v2
17+
uses: actions/setup-python@v5
1818
with:
1919
python-version: "3.10"
2020
- name: Install tox
@@ -28,15 +28,15 @@ jobs:
2828
strategy:
2929
fail-fast: true
3030
matrix:
31-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
31+
python-version: ["3.7","3.8","3.9","3.10","3.11","3.12"]
3232
package: [vos]
3333
steps:
3434
- name: Checkout code
35-
uses: actions/checkout@v2
35+
uses: actions/checkout@v4
3636
with:
3737
fetch-depth: 0
3838
- name: Set up Python
39-
uses: actions/setup-python@v2
39+
uses: actions/setup-python@v5
4040
with:
4141
python-version: ${{ matrix.python-version }}
4242
- name: Install tox
@@ -53,19 +53,19 @@ jobs:
5353
runs-on: ubuntu-latest
5454
needs: tests
5555
steps:
56-
- uses: actions/checkout@v2
56+
- uses: actions/checkout@v4
5757
- name: Set up Python 3.10
58-
uses: actions/setup-python@v2
58+
uses: actions/setup-python@v5
5959
with:
6060
python-version: "3.10"
6161
- name: Setup Graphviz
62-
uses: ts-graphviz/setup-graphviz@v1
62+
uses: ts-graphviz/setup-graphviz@v2
6363
- name: Install tox
6464
run: python -m pip install --upgrade tox
6565
- name: checkstyle & coverage vos
6666
run: cd vos && tox -e checkstyle && tox -e cov
6767
- name: Upload coverage to codecov
68-
uses: codecov/codecov-action@v1
68+
uses: codecov/codecov-action@v4
6969
with:
7070
files: ./vos/coverage.xml
7171

@@ -78,9 +78,9 @@ jobs:
7878
id-token: write
7979
if: contains(github.ref, '=')
8080
steps:
81-
- uses: actions/checkout@v2
81+
- uses: actions/checkout@v4
8282
- name: Set up Python
83-
uses: actions/setup-python@v2
83+
uses: actions/setup-python@v5
8484
with:
8585
python-version: '3.x'
8686
- name: Determine the package
@@ -98,7 +98,7 @@ jobs:
9898
run: |
9999
cd ${{ env.repo_name }}
100100
python -m pip install --upgrade pip
101-
pip install setuptools wheel twine
101+
pip install setuptools wheel
102102
- name: Install package
103103
run: |
104104
cd ${{ env.repo_name }}

0 commit comments

Comments
 (0)