From a2c3a35a9446e33e2ea60f8388556c12581e8273 Mon Sep 17 00:00:00 2001 From: Giovanni Cerretani Date: Mon, 14 Oct 2024 22:04:28 +0200 Subject: [PATCH] update ci labels --- .github/workflows/pyinstaller.yml | 10 +++++----- .github/workflows/pythonapp.yml | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/pyinstaller.yml b/.github/workflows/pyinstaller.yml index e4707a9..2837ddc 100644 --- a/.github/workflows/pyinstaller.yml +++ b/.github/workflows/pyinstaller.yml @@ -11,15 +11,15 @@ jobs: strategy: matrix: - runs-on: ['ubuntu-240.04', 'macos-11', 'windows-2019'] + runs-on: ['ubuntu-20.04', 'macos-12', 'windows-2019'] runs-on: ${{ matrix.runs-on }} steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Set up Python - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: python-version: 3.7 @@ -35,14 +35,14 @@ jobs: - name: Upload artifact for Windows if: runner.os == 'Windows' - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: antenati_gui_windows.exe path: dist/antenati_gui.exe - name: Upload artifact for macOS and Ubuntu if: runner.os != 'Windows' - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: antenati_gui_${{ matrix.runs-on }} path: dist/antenati_gui diff --git a/.github/workflows/pythonapp.yml b/.github/workflows/pythonapp.yml index 42fe875..39782b5 100644 --- a/.github/workflows/pythonapp.yml +++ b/.github/workflows/pythonapp.yml @@ -8,16 +8,16 @@ jobs: strategy: matrix: - runs-on: ['ubuntu-20.04', 'macos-11', 'windows-2019'] + runs-on: ['ubuntu-20.04', 'macos-12', 'windows-2019'] runs-on: ${{ matrix.runs-on }} steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Set up Python 3.7 - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: python-version: 3.7