From b57f8236dca5aa0a1a54bd261f34c796eaceb1ff Mon Sep 17 00:00:00 2001 From: Glenn Rice Date: Thu, 27 Jun 2024 06:27:17 -0500 Subject: [PATCH] Update the github check formats action to use Ubuntu 24.04. The docker build is already using 24.04. It is time to get the workflow in line. --- .github/workflows/check-formats.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/check-formats.yml b/.github/workflows/check-formats.yml index ec47d6c741..e94ca09ae2 100644 --- a/.github/workflows/check-formats.yml +++ b/.github/workflows/check-formats.yml @@ -13,9 +13,9 @@ on: jobs: perltidy: name: Check Perl file formatting with perltidy - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 container: - image: perl:5.34 + image: perl:5.38 steps: - name: Checkout code uses: actions/checkout@v4 @@ -30,7 +30,7 @@ jobs: prettier: name: Check JavaScript, style, and HTML file formatting with prettier - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - name: Checkout code uses: actions/checkout@v4