Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update xcodeproj dependency #1209

Merged
merged 4 commits into from
Oct 8, 2023
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
18 changes: 12 additions & 6 deletions .github/workflows/Ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,19 @@ jobs:
linux_build:
runs-on: ubuntu-latest
steps:
- name: Setup Swift
# You may pin to the exact commit or the version.
# uses: swift-actions/setup-swift@65540b95f51493d65f5e59e97dcef9629ddf11bf
uses: swift-actions/setup-swift@v1.23.0
# - name: Setup Swift
# # You may pin to the exact commit or the version.
# # uses: swift-actions/setup-swift@65540b95f51493d65f5e59e97dcef9629ddf11bf
# uses: swift-actions/setup-swift@v1.23.0
# with:
# # Swift version to configure
# swift-version: 5.9 # default is 5.8
- name: Setup Swift environment for macOS, Linux and Windows
uses: SwiftyLab/setup-swift@v1.4.1
with:
# Swift version to configure
swift-version: 5.8 # default is 5.8
swift-version: "5.9"
- name: Get swift version
run: swift --version
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@ec02537da5712d66d4d50a0f33b7eb52773b5ed1
Expand Down
3 changes: 1 addition & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -236,8 +236,7 @@ var dependencies: [Package.Dependency] = [
// PathKit needs to be exact to avoid a SwiftPM bug where dependency resolution takes a very long time.
.package(url: "https://github.com/kylef/PathKit.git", exact: "1.0.1"),
.package(url: "https://github.com/art-divin/StencilSwiftKit.git", branch: "stable"),
.package(url: "https://github.com/art-divin/Stencil.git", branch: "master"),
.package(url: "https://github.com/tuist/XcodeProj.git", exact: "8.3.1"),
.package(url: "https://github.com/tuist/XcodeProj.git", exact: "8.15.0"),
.package(url: "https://github.com/apple/swift-syntax.git", from: "508.0.0"),
.package(url: "https://github.com/Quick/Quick.git", from: "3.0.0"),
.package(url: "https://github.com/Quick/Nimble.git", from: "9.0.0"),
Expand Down