Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
name: shellcheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- name: Run shellcheck
run: |
# Ubuntu-latest preinstalls shellcheck.
Expand All @@ -26,7 +26,7 @@ jobs:
name: shfmt (format check)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- name: Install shfmt
run: |
sudo apt-get update -qq
Expand All @@ -42,7 +42,7 @@ jobs:
name: bats (unit tests)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- name: Install bats
run: |
sudo apt-get update -qq
Expand All @@ -55,7 +55,7 @@ jobs:
name: bats (macOS, bash 3.2)
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- name: Show shell versions
run: |
# macOS ships bash 3.2; confirm we're really testing that path.
Expand All @@ -79,7 +79,7 @@ jobs:
matrix:
node-version: ["18.18", "20", "22"]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
Expand Down
Loading