diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 491ea5e..9ab6e15 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: name: Build (Debug) runs-on: macos-14 steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v7 # The macos-14 image still defaults to Xcode 15.4, whose stricter Swift # concurrency checking rejects code this project compiles cleanly under diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a78a78c..3810c98 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,7 +13,7 @@ jobs: name: Build & Publish runs-on: macos-14 steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v7 with: # Need full history + tags so the release-notes step can diff # against the previous tag. @@ -24,7 +24,7 @@ jobs: # and a missing/renamed repo must fail loudly rather than silently fall # back to auto-generated notes. - name: Check out release notes - uses: actions/checkout@v5 + uses: actions/checkout@v7 with: repository: wavever/clipth-website path: .website