From 88504e533232e7a34b105b246dc9af8814e636aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Ho=C5=99e=C5=88ovsk=C3=BD?= Date: Sat, 28 Nov 2020 21:36:47 +0100 Subject: [PATCH] Use Ubuntu-20.04 runner for running header guard validation Using `ubuntu-latest` is triggering warning that it will soon migrate from 18.04 to 20.04, so I am migrating preventively. --- .github/workflows/validate-header-guards.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/validate-header-guards.yml b/.github/workflows/validate-header-guards.yml index ad70bcd2..c02b5d49 100644 --- a/.github/workflows/validate-header-guards.yml +++ b/.github/workflows/validate-header-guards.yml @@ -5,7 +5,7 @@ on: [push, pull_request] jobs: build: # Set the type of machine to run on - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 steps: - name: Checkout source code