Skip to content

Commit

Permalink
Updated action versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
androst committed Jan 22, 2024
1 parent acd642e commit 536fa49
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build_ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Install dependencies
run: |
Expand All @@ -29,10 +29,10 @@ jobs:
libpython3-dev \
python3-pip \
python3-setuptools
sudo pip3 install --upgrade pip
sudo pip3 install patchelf
sudo pip3 install wheel
sudo pip3 install auditwheel
sudo pip install --upgrade pip
sudo pip install patchelf
sudo pip install wheel
sudo pip install auditwheel
- name: Configure CMake
run: |
Expand All @@ -46,7 +46,7 @@ jobs:
run: cmake --build build --config ${{env.BUILD_TYPE}} -j 4

- name: Setup Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: '3.8'

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Configure CMake
run: |
Expand All @@ -30,14 +30,14 @@ jobs:
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} -j 4

- name: Setup Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: 3.8

- name: Install dependencies
run: |
pip3 install --upgrade pip
pip3 install wheel
pip install --upgrade pip
pip install wheel
- name: Build pyromocc python wheel
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} --target create_python_wheel
Expand Down

0 comments on commit 536fa49

Please sign in to comment.