Skip to content

Commit 3ebd765

Browse files
Use Vapor's Swiftly action
The author of the Swiftly action being used to set up the tooling on the CI front deleted their repo and most of their content to move to Codeberg. To prevent CI from breaking for now while CI is still being done on GitHub Actions, the action in question has been replaced. In the future, we should consider moving CI efforts off GitHub. Signed-off-by: Marquis Kurt <software@marquiskurt.net>
1 parent b85dfae commit 3ebd765

2 files changed

Lines changed: 5 additions & 7 deletions

File tree

.github/workflows/docs-build.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,9 @@ jobs:
3131
submodules: recursive
3232
- name: Setup Pages
3333
uses: actions/configure-pages@v4
34-
- name: Set Swift version
35-
uses: beeauvin/swiftly-swift@v1
34+
- uses: vapor/swiftly-action@v0.2
3635
with:
37-
swift-version: main-snapshot-2025-10-02
36+
toolchain: main-snapshot-2025-10-02
3837
- name: Install Brew Packages
3938
run: |
4039
brew update

.github/workflows/testing.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,10 @@ jobs:
1919
- uses: actions/checkout@v4
2020
with:
2121
submodules: recursive
22-
- name: Set Swift version
23-
uses: beeauvin/swiftly-swift@v1
22+
- uses: vapor/swiftly-action@v0.2
2423
with:
25-
swift-version: main-snapshot-2025-10-02
24+
toolchain: main-snapshot-2025-10-02
2625
- name: Build
2726
run: swift build -v
2827
- name: Run tests
29-
run: swift test -v
28+
run: swift test -v

0 commit comments

Comments
 (0)