Skip to content

Commit

Permalink
CI: use macos-13 runner (#1634)
Browse files Browse the repository at this point in the history
* CI: use macos-13 runner

The job was using 'macos-12' runner, which has been
deprecated. Its usage caused error and tests were
not executed.

This commit updates the workflow to use macos-13 image.

Signed-off-by: Patryk Wrobel <[email protected]>
  • Loading branch information
pwrobeldev authored Dec 12, 2024
1 parent 2167a72 commit f12ffbb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/functional-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ jobs:

swift-mac:
name: Swift on MacOS
runs-on: macos-12
runs-on: macos-13

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion functional-tests/scripts/build-swift-functional
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ popd
# Run SwiftLint if available
if which swiftlint; then
pushd functional/swift > /dev/null
swiftlint --path . > "${BUILD_DIR}/swiftlint.xml"
swiftlint . > "${BUILD_DIR}/swiftlint.xml"
popd > /dev/null
else
echo "SwiftLint was not found, skip linting"
Expand Down

0 comments on commit f12ffbb

Please sign in to comment.