Skip to content

Commit

Permalink
bump workflows to use ubuntu 24.04 (#698)
Browse files Browse the repository at this point in the history
This gets us to bats v1.10
Ref exercism/awk#278
  • Loading branch information
glennj committed Jul 11, 2024
1 parent a6a8fa5 commit 67dce0c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,15 @@ on:

jobs:
ci:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

steps:
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332

- name: Install bats-core
run: sudo apt update && sudo apt -y install bats
# bats v1.10.0 -- https://launchpad.net/ubuntu/noble/+source/bats

- name: Run tests for all exercises
run: bash .github/scripts/ci
3 changes: 2 additions & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,15 @@ on: pull_request

jobs:
ci:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

steps:
- name: Checkout PR
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332

- name: Install bats-core
run: sudo apt update && sudo apt -y install bats
# bats v1.10.0 -- https://launchpad.net/ubuntu/noble/+source/bats

- name: Run tests for changed/added exercises
env:
Expand Down

0 comments on commit 67dce0c

Please sign in to comment.