From 5b740c92cbb1bd868739e061b15e9b4b3de4cb66 Mon Sep 17 00:00:00 2001 From: Kiril Gantchev Date: Tue, 27 Aug 2024 14:02:21 +0300 Subject: [PATCH] Use latest build machines for macOS and Linux. --- .github/workflows/github-actions-main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/github-actions-main.yml b/.github/workflows/github-actions-main.yml index 18640e95204..bbc31bf000b 100644 --- a/.github/workflows/github-actions-main.yml +++ b/.github/workflows/github-actions-main.yml @@ -10,7 +10,7 @@ permissions: jobs: pre_job: if: github.repository == 'kgantchev/joplin' - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest outputs: should_skip: ${{ steps.skip_check.outputs.should_skip }} steps: @@ -28,7 +28,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [macos-12, ubuntu-20.04, windows-2019] + os: [macos-latest, ubuntu-latest, windows-2019] steps: - name: Disable TCP/UDP offload on Windows if: runner.os == 'Windows' @@ -130,7 +130,7 @@ jobs: ServerDockerImage: needs: pre_job if: github.repository == 'kgantchev/joplin' && needs.pre_job.outputs.should_skip != 'true' - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest steps: - name: Install Docker Engine run: |