Skip to content

Commit 909e5b0

Browse files
committed
tests: Update github config to use current macos and actions/checkout, fixes #68
1 parent 7d839ca commit 909e5b0

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/tests.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,26 +13,26 @@ jobs:
1313
shellcheck:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v2
16+
- uses: actions/checkout@v4
1717
- run: shellcheck ./src/*
1818
build:
1919
strategy:
2020
matrix:
21-
os: ['macos-12', 'ubuntu-latest']
21+
os: ['macos-15', 'ubuntu-latest']
2222
runs-on: ${{ matrix.os }}
2323

2424
steps:
25-
- uses: actions/checkout@v2
25+
- uses: actions/checkout@v4
2626
- run: ./script/install-bats.sh
27-
28-
- uses: actions/checkout@v2
27+
28+
- uses: actions/checkout@v4
2929
with:
3030
repository: bats-core/bats-support
3131
path: bats-support
32-
32+
3333
# set PATh to ensure we use bats from our local installation (looking at you Mac Runner!)
3434
- name: bats test
3535
run: |
3636
PATH="$HOME/.local/bin:$PATH"
3737
bats -v
38-
BATS_LIB_PATH="$PWD" bats --print-output-on-failure test
38+
BATS_LIB_PATH="$PWD" bats --print-output-on-failure test

0 commit comments

Comments
 (0)