From 54a3e1e0eadd3c42a7f5e90923185cc8b4122f17 Mon Sep 17 00:00:00 2001 From: Michele Adduci Date: Sun, 7 Apr 2024 06:36:32 +0200 Subject: [PATCH] Updated GitHub Actions to latest tags --- .github/workflows/build-shared.yml | 8 ++++---- .github/workflows/build-static.yml | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build-shared.yml b/.github/workflows/build-shared.yml index 3a6e03f..958382f 100644 --- a/.github/workflows/build-shared.yml +++ b/.github/workflows/build-shared.yml @@ -20,12 +20,12 @@ 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: | @@ -33,7 +33,7 @@ jobs: 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 diff --git a/.github/workflows/build-static.yml b/.github/workflows/build-static.yml index 8485b6e..c5d7301 100644 --- a/.github/workflows/build-static.yml +++ b/.github/workflows/build-static.yml @@ -20,12 +20,12 @@ 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: | @@ -33,7 +33,7 @@ jobs: 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