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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
container:
image: swift:${{ matrix.swift }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
# Oracle tests shell out to these; the pure-Swift suite passes without them.
# fonts-dejavu-core feeds the real-font sanity oracle in FontMetricsTests.
- name: Install oracle tools
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
if: github.event_name == 'pull_request'
runs-on: macos-26
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- name: Swift version
run: swift --version
- name: Test Rostrum (Darwin XML branch)
Expand Down
9 changes: 7 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
build:
runs-on: macos-26
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- name: Build DocC archive
run: |
xcodebuild docbuild -scheme Rostrum \
Expand All @@ -34,6 +34,11 @@ jobs:
ARCHIVE=$(find .docc-build -name 'Rostrum.doccarchive' -print -quit)
"$(xcrun --find docc)" process-archive transform-for-static-hosting \
"$ARCHIVE" --output-path site --hosting-base-path rostrum
# Deliberately still v3. It is a composite action wrapping
# actions/upload-artifact@v4, so unlike checkout and deploy-pages it
# carries no Node 20 deprecation. v4 dropped dotfiles from the artifact
# — a silent change for a directory we do not fully control, since
# `transform-for-static-hosting` decides what lands in `site`.
- uses: actions/upload-pages-artifact@v3
with:
path: site
Expand All @@ -45,4 +50,4 @@ jobs:
url: ${{ steps.deployment.outputs.page_url }}
steps:
- id: deployment
uses: actions/deploy-pages@v4
uses: actions/deploy-pages@v5
Loading