From f506ee386279188853b594585f38be68ec6764f3 Mon Sep 17 00:00:00 2001 From: icaoberg Date: Sat, 16 Dec 2023 03:11:46 -0500 Subject: [PATCH] Refactor GitHub workflows. Update runs-on parameter to use `ubuntu-latest` instead of `ubuntu-18.04`. --- .github/workflows/main.yml | 2 +- .github/workflows/pretty.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index edb4091..3ad5d43 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -3,7 +3,7 @@ on: [push, pull_request] jobs: build: name: Build - runs-on: ubuntu-18.04 + runs-on: ubuntu-latest strategy: matrix: singularity_version: diff --git a/.github/workflows/pretty.yml b/.github/workflows/pretty.yml index be689d4..0914987 100644 --- a/.github/workflows/pretty.yml +++ b/.github/workflows/pretty.yml @@ -3,7 +3,7 @@ on: [push, pull_request] jobs: build: name: Build - runs-on: ubuntu-18.04 + runs-on: ubuntu-latest steps: - name: Check out code uses: actions/checkout@v2