From 441f2ed9b03f5255ffbda762190d36cc4cf2e1a6 Mon Sep 17 00:00:00 2001 From: Thad House Date: Thu, 9 Dec 2021 12:12:59 -0800 Subject: [PATCH] [build] actions: use fixed image versions instead latest (#3761) --- .github/workflows/cmake.yml | 4 ++-- .github/workflows/gradle.yml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 4d36c91a8d..c0c0be7f66 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -12,7 +12,7 @@ jobs: name: Linux container: wpilib/roborio-cross-ubuntu:2022-20.04 flags: "" - - os: macos-latest + - os: macOS-11 name: macOS container: "" flags: "-DWITH_JAVA=OFF" @@ -43,7 +43,7 @@ jobs: build-vcpkg: name: "Build - Windows" - runs-on: windows-latest + runs-on: windows-2019 steps: - uses: actions/checkout@v2 - name: Prepare vcpkg diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index d2c2efbd99..e05b3e6a70 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -44,13 +44,13 @@ jobs: fail-fast: false matrix: include: - - os: windows-latest + - os: windows-2019 artifact-name: Win64 architecture: x64 - - os: windows-latest + - os: windows-2019 artifact-name: Win32 architecture: x86 - - os: macos-latest + - os: macOS-11 artifact-name: macOS architecture: x64 name: "Build - ${{ matrix.artifact-name }}"