#8981 GitHub Actions: Pin VM version used for daily builds

This commit is contained in:
Kristian Bendiksen
2022-11-23 18:23:16 +01:00
committed by Magne Sjaastad
parent a74b168e03
commit 5847547d81
4 changed files with 6 additions and 7 deletions

View File

@@ -22,7 +22,7 @@ jobs:
config:
- {
name: "Windows Latest MSVC",
os: windows-latest,
os: windows-2022,
cc: "cl",
cxx: "cl",
vcpkg-response-file: vcpkg_x64-windows.txt,
@@ -32,7 +32,7 @@ jobs:
}
- {
name: "Ubuntu Latest gcc",
os: ubuntu-latest,
os: ubuntu-20.04,
cc: "gcc",
cxx: "g++",
vcpkg-response-file: vcpkg_x64-linux.txt,
@@ -42,7 +42,7 @@ jobs:
}
- {
name: "Ubuntu Latest clang",
os: ubuntu-latest,
os: ubuntu-20.04,
cc: "clang",
cxx: "clang++",
vcpkg-response-file: vcpkg_x64-linux.txt,

View File

@@ -4,7 +4,7 @@ on: [push]
jobs:
cmake-format-job:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- name: Install cmakelang for cmake-format
run: |

View File

@@ -4,7 +4,7 @@ on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4

View File

@@ -5,8 +5,7 @@ on:
jobs:
build:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: sobolevn/misspell-fixer-action@master