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
2 changes: 1 addition & 1 deletion .github/workflows/run-benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ jobs:
github-token: ${{ steps.create-penny-token.outputs.token }}

- name: Check out code
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: "${{ steps.commit-info.outputs.ref }}"
fetch-depth: 0
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/run-unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ jobs:
outputs:
matrix: ${{ steps.gen-matrix.outputs.matrix }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- id: check-swift-minus-2
uses: vapor/ci/.github/actions/check-compatible-swift@15f8aff92cac6deb62a9f5891606a3167d76df28
with: { package_root: "${{ inputs.package_root }}", assume_installed_version: "6.1.3" }
Expand Down Expand Up @@ -193,7 +193,7 @@ jobs:
- name: Install curl and zstd
run: apt-get update -yq && apt-get install -y curl zstd
- name: Check out code
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Cache .build
uses: actions/cache@v5
with:
Expand Down Expand Up @@ -237,7 +237,7 @@ jobs:
with:
xcode-version: ${{ matrix.xcode-version }}
- name: Check out code
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Check Swift compatibility
id: swift-check
uses: vapor/ci/.github/actions/check-compatible-swift@15f8aff92cac6deb62a9f5891606a3167d76df28
Expand Down Expand Up @@ -290,7 +290,7 @@ jobs:
swift-build: ${{ matrix.swift-tag }}
update-sdk-modules: true
- name: Check out code
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Check Swift compatibility
id: swift-check
uses: vapor/ci/.github/actions/check-compatible-swift@15f8aff92cac6deb62a9f5891606a3167d76df28
Expand Down Expand Up @@ -320,7 +320,7 @@ jobs:
with:
xcode-version: latest-stable
- name: Check out code
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Run iOS Tests
run: |
name="$(xcrun simctl list -j -e devices | jq -r '[.devices | to_entries[] | select(.key | contains(".iOS-"))] | sort_by(.key) | last | .value | first | .name')"
Expand All @@ -336,7 +336,7 @@ jobs:
- name: Configure git
run: git config --global --add safe.directory "${GITHUB_WORKSPACE}"
- name: Check out code
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Read config file
# if .swift-format is not provided in the repo, use the default config file from CI
run: |
Expand All @@ -357,7 +357,7 @@ jobs:
timeout-minutes: 30
steps:
- name: Check out code
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Install linux dependencies
run: apt-get update && apt-get install -y curl jq
- name: Install SDK
Expand All @@ -378,7 +378,7 @@ jobs:
timeout-minutes: 30
steps:
- name: Check out code
uses: actions/checkout@v6
uses: actions/checkout@v7
# NOTE: Portions of this workflow are adapted from
# https://github.com/apple/swift-nio/pull/3159/
- name: Install linux dependencies
Expand Down Expand Up @@ -409,7 +409,7 @@ jobs:
- name: Ensure zstd is available
run: sudo apt-get update -yq && sudo apt-get install -yq zstd
- name: Check out code
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Check Swift compatibility
id: swift-check
uses: vapor/ci/.github/actions/check-compatible-swift@15f8aff92cac6deb62a9f5891606a3167d76df28
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/submit-deps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
container: swift:noble
steps:
- name: Check out code
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Fix Git configuration
run: git config --global --add safe.directory "${GITHUB_WORKSPACE}"
- name: Submit dependency graph
Expand Down
Loading