Skip to content

Commit

Permalink
Updated GitHub Actions to latest tags
Browse files Browse the repository at this point in the history
  • Loading branch information
madduci committed Apr 7, 2024
1 parent 611abfe commit 54a3e1e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-shared.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,20 +20,20 @@ jobs:

steps:
- name: Perform checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install Python environment
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.10'
python-version: '3.12'

- name: Install conan
run: |
pip install conan --upgrade
conan profile detect --force
- name: Linux build
if: matrix.os == 'ubuntu-20.04'
if: matrix.os == 'ubuntu-latest'
run: |
mkdir -p build && cd build
conan install .. --output-folder=. --build=missing
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build-static.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,20 +20,20 @@ jobs:

steps:
- name: Perform checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install Python environment
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.10'
python-version: '3.12'

- name: Install conan
run: |
pip install conan --upgrade
conan profile detect --force
- name: Linux build
if: matrix.os == 'ubuntu-20.04'
if: matrix.os == 'ubuntu-latest'
run: |
mkdir -p build && cd build
conan install .. --output-folder=. --build=missing
Expand Down

0 comments on commit 54a3e1e

Please sign in to comment.