Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
container: swift:6.1
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- run: swift --version
- run: swift build
- run: swift test
Expand All @@ -24,7 +24,7 @@ jobs:
name: Build & test (macOS)
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- run: swift --version
- run: swift build -c release
- run: swift test
Expand All @@ -34,7 +34,7 @@ jobs:
runs-on: ubuntu-latest
container: swift:6.1
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- name: Download shared conformance vectors
run: |
apt-get update -qq && apt-get install -y -qq curl
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/commit-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
name: Conventional Commits
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
fetch-depth: 0
- name: Check commit subjects follow Conventional Commits
Expand Down
Loading