From 238e168c3772571f2fce09d41f49eabc87761b85 Mon Sep 17 00:00:00 2001 From: Ryan Friedman Date: Fri, 24 Nov 2023 11:53:38 -0700 Subject: [PATCH] Use ubuntu-22.04 vs ubuntu:22.04 * https://github.blog/changelog/2022-08-09-github-actions-ubuntu-22-04-is-now-generally-available-on-github-hosted-runners/ Signed-off-by: Ryan Friedman --- .github/workflows/pre-commit.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index 1be6379..abc8b36 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -9,7 +9,7 @@ concurrency: jobs: pre-commit: - runs-on: ubuntu:22.04 + runs-on: ubuntu-22.04 strategy: fail-fast: false # don't cancel if a job from the matrix fails # steps: