From 93669785fdc896ccc69751447023f8f790069063 Mon Sep 17 00:00:00 2001 From: André Oliveira <37463445+SpecialAro@users.noreply.github.com> Date: Wed, 27 Apr 2022 23:44:07 +0100 Subject: Use specific version of the GH action runner OS so as to limit issues relating to upgraded OS under our feet (#55) Co-authored-by: Vijay A --- .github/workflows/builds.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to '.github/workflows/builds.yml') diff --git a/.github/workflows/builds.yml b/.github/workflows/builds.yml index 142cbe7e2..ab91c3205 100644 --- a/.github/workflows/builds.yml +++ b/.github/workflows/builds.yml @@ -34,7 +34,7 @@ env: jobs: check_updates: - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 name: "Check latest commit: ${{ github.event.inputs.message }}" outputs: should_run: ${{ steps.should_run.outputs.should_run }} @@ -96,7 +96,7 @@ jobs: name: "macos ${{ github.event.inputs.message }}" needs: check_updates if: ${{ (needs.check_updates.outputs.should_run != 'false') && (github.event_name != 'workflow_dispatch' || (github.event_name == 'workflow_dispatch' && (contains(github.event.inputs.message, '[macOS]') || (!contains(github.event.inputs.message, '[macOS]') && !contains(github.event.inputs.message, '[Linux]') && !contains(github.event.inputs.message, '[Windows]'))))) }} - runs-on: macos-latest + runs-on: macos-12 steps: - name: Set env vars run: | @@ -287,7 +287,7 @@ jobs: name: "windows ${{ github.event.inputs.message }}" needs: check_updates if: ${{ (needs.check_updates.outputs.should_run != 'false') && (github.event_name != 'workflow_dispatch' || (github.event_name == 'workflow_dispatch' && (contains(github.event.inputs.message, '[Windows]') || (!contains(github.event.inputs.message, '[macOS]') && !contains(github.event.inputs.message, '[Linux]') && !contains(github.event.inputs.message, '[Windows]'))))) }} - runs-on: windows-latest + runs-on: windows-2019 steps: - name: Set env vars run: | -- cgit v1.2.3-54-g00ecf