Skip to content

Commit 54a3e1e

Browse files
committed
Updated GitHub Actions to latest tags
1 parent 611abfe commit 54a3e1e

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/build-shared.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,20 +20,20 @@ jobs:
2020

2121
steps:
2222
- name: Perform checkout
23-
uses: actions/checkout@v3
23+
uses: actions/checkout@v4
2424

2525
- name: Install Python environment
26-
uses: actions/setup-python@v4
26+
uses: actions/setup-python@v5
2727
with:
28-
python-version: '3.10'
28+
python-version: '3.12'
2929

3030
- name: Install conan
3131
run: |
3232
pip install conan --upgrade
3333
conan profile detect --force
3434
3535
- name: Linux build
36-
if: matrix.os == 'ubuntu-20.04'
36+
if: matrix.os == 'ubuntu-latest'
3737
run: |
3838
mkdir -p build && cd build
3939
conan install .. --output-folder=. --build=missing

.github/workflows/build-static.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,20 +20,20 @@ jobs:
2020

2121
steps:
2222
- name: Perform checkout
23-
uses: actions/checkout@v3
23+
uses: actions/checkout@v4
2424

2525
- name: Install Python environment
26-
uses: actions/setup-python@v4
26+
uses: actions/setup-python@v5
2727
with:
28-
python-version: '3.10'
28+
python-version: '3.12'
2929

3030
- name: Install conan
3131
run: |
3232
pip install conan --upgrade
3333
conan profile detect --force
3434
3535
- name: Linux build
36-
if: matrix.os == 'ubuntu-20.04'
36+
if: matrix.os == 'ubuntu-latest'
3737
run: |
3838
mkdir -p build && cd build
3939
conan install .. --output-folder=. --build=missing

0 commit comments

Comments
 (0)