Skip to content

Commit

Permalink
Update the github check formats action to use Ubuntu 24.04.
Browse files Browse the repository at this point in the history
Also update to using the perl 5.38 image which is the version of perl
used by Ubuntu 24.04.
  • Loading branch information
drgrice1 committed Oct 20, 2024
1 parent 09914fc commit 234f242
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/check-formats.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
unit-tests:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout PG code
uses: actions/checkout@v4
Expand Down

0 comments on commit 234f242

Please sign in to comment.