Skip to content

Commit 864bb27

Browse files
committed
Update dependencies
1 parent 9e41cdc commit 864bb27

16 files changed

Lines changed: 192 additions & 188 deletions

File tree

.github/workflows/build.yml

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
matrix:
1111
xcode:
12-
- 26.2
12+
- 26.4
1313
platform:
1414
- iOS
1515
steps:
@@ -18,15 +18,15 @@ jobs:
1818
with:
1919
submodules: recursive
2020
- name: Download Libdigidocpp iOS artifact
21-
uses: dawidd6/action-download-artifact@v15
21+
uses: dawidd6/action-download-artifact@v20
2222
with:
2323
workflow: build.yml
2424
branch: master
2525
name: iphoneos
2626
path: libdigidocpp-ios
2727
repo: open-eid/libdigidocpp
2828
- name: Download Libdigidocpp iOS Simulator artifact
29-
uses: dawidd6/action-download-artifact@v15
29+
uses: dawidd6/action-download-artifact@v20
3030
with:
3131
workflow: build.yml
3232
branch: master
@@ -44,14 +44,9 @@ jobs:
4444
rm -rf $LIBDIGIDOCPP_PATH/ios-arm64_x86_64-simulator && mkdir $LIBDIGIDOCPP_PATH/ios-arm64_x86_64-simulator && cp -r ${{ github.workspace }}/libdigidocpp.iphonesimulator/libdigidocpp.iphonesimulator/lib/digidocpp.framework $LIBDIGIDOCPP_PATH/ios-arm64_x86_64-simulator/
4545
- name: Set up Homebrew
4646
id: set-up-homebrew
47-
uses: Homebrew/actions/setup-homebrew@master
48-
- name: Install Swift-sh
49-
run: brew install swift-sh
50-
- name: Install Mockolo
51-
run: |
52-
curl -L https://github.com/uber/mockolo/releases/download/2.5.0/mockolo.artifactbundle.zip -o mockolo.zip
53-
unzip mockolo.zip
54-
sudo cp mockolo.artifactbundle/mockolo/macos/mockolo /usr/local/bin/mockolo
47+
uses: Homebrew/actions/setup-homebrew@main
48+
- name: Install dependencies
49+
run: brew install swift-sh mockolo
5550
- name: Setup config and TSL files
5651
run: |
5752
export RESOURCES_DIRECTORY="Modules/ConfigLib/Sources/ConfigLib/Resources"
@@ -95,6 +90,8 @@ jobs:
9590
GOOGLE_SERVICES_PLIST: ${{ secrets.GOOGLE_SERVICES_PLIST }}
9691
run: |
9792
export LANG=en_US.UTF-8
93+
94+
sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app
9895
9996
# Setup Google Services
10097
echo $GOOGLE_SERVICES_PLIST | base64 --decode > "${{ github.workspace }}/RIADigiDoc/Supporting files/GoogleService-Info.plist"

Modules/CommonsLib/Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// swift-tools-version: 6.2
1+
// swift-tools-version: 6.3
22
// The swift-tools-version declares the minimum version of Swift required to build this package.
33

44
import PackageDescription

Modules/ConfigLib/Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// swift-tools-version: 6.2
1+
// swift-tools-version: 6.3
22
// The swift-tools-version declares the minimum version of Swift required to build this package.
33

44
import PackageDescription
@@ -16,7 +16,7 @@ let package = Package(
1616
],
1717
dependencies: [
1818
.package(url: "https://github.com/hmlongco/Factory", exact: .init(2, 5, 3)),
19-
.package(url: "https://github.com/Alamofire/Alamofire.git", exact: .init(5, 10, 2)),
19+
.package(url: "https://github.com/Alamofire/Alamofire.git", exact: .init(5, 11, 2)),
2020
.package(url: "https://github.com/TakeScoop/SwiftyRSA", exact: .init(1, 8, 0)),
2121
.package(path: "../CommonsLib"),
2222
.package(path: "../UtilsLib"),

Modules/CryptoLib/Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// swift-tools-version: 6.2
1+
// swift-tools-version: 6.3
22
import PackageDescription
33

44
let packageRoot = #filePath

Modules/IdCardLib/Package.swift

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// swift-tools-version: 6.2
1+
// swift-tools-version: 6.3
22
import PackageDescription
33

44
let package = Package(
@@ -13,7 +13,7 @@ let package = Package(
1313
],
1414
dependencies: [
1515
.package(url: "https://github.com/hmlongco/Factory", exact: .init(2, 5, 3)),
16-
.package(url: "https://github.com/leif-ibsen/BigInt.git", exact: .init(1, 21, 0)),
16+
.package(url: "https://github.com/leif-ibsen/BigInt.git", exact: .init(1, 23, 0)),
1717
.package(url: "https://github.com/leif-ibsen/Digest.git", exact: .init(1, 13, 0)),
1818
.package(url: "https://github.com/filom/ASN1Decoder", exact: .init(1, 10, 0)),
1919
.package(url: "https://github.com/leif-ibsen/SwiftECC.git", exact: .init(5, 5, 0)),
@@ -60,7 +60,10 @@ let package = Package(
6060
.target(
6161
name: "IdCardLibMocks",
6262
dependencies: ["IdCardLib"],
63-
path: "Tests/Mocks/Generated"
63+
path: "Tests/Mocks/Generated",
64+
swiftSettings: [
65+
.swiftLanguageMode(.v5)
66+
]
6467
),
6568
.testTarget(
6669
name: "IdCardLibTests",

Modules/LibdigidocLib/Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// swift-tools-version: 6.2
1+
// swift-tools-version: 6.3
22
import PackageDescription
33

44
let package = Package(

Modules/MobileIdLib/Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// swift-tools-version: 6.2
1+
// swift-tools-version: 6.3
22
// The swift-tools-version declares the minimum version of Swift required to build this package.
33

44
import PackageDescription
@@ -15,7 +15,7 @@ let package = Package(
1515
],
1616
dependencies: [
1717
.package(url: "https://github.com/hmlongco/Factory", exact: .init(2, 5, 3)),
18-
.package(url: "https://github.com/Alamofire/Alamofire.git", exact: .init(5, 10, 2)),
18+
.package(url: "https://github.com/Alamofire/Alamofire.git", exact: .init(5, 11, 2)),
1919
.package(path: "../CommonsLib"),
2020
.package(path: "../UtilsLib")
2121
],

Modules/SmartIdLib/Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// swift-tools-version: 6.2
1+
// swift-tools-version: 6.3
22
// The swift-tools-version declares the minimum version of Swift required to build this package.
33

44
import PackageDescription
@@ -15,7 +15,7 @@ let package = Package(
1515
],
1616
dependencies: [
1717
.package(url: "https://github.com/hmlongco/Factory", exact: .init(2, 5, 3)),
18-
.package(url: "https://github.com/Alamofire/Alamofire.git", exact: .init(5, 10, 2)),
18+
.package(url: "https://github.com/Alamofire/Alamofire.git", exact: .init(5, 11, 2)),
1919
.package(path: "../UtilsLib"),
2020
.package(path: "../CommonsLib")
2121
],

Modules/Test/CommonsTestShared/Package.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// swift-tools-version: 6.2
1+
// swift-tools-version: 6.3
22
// The swift-tools-version declares the minimum version of Swift required to build this package.
33

44
import PackageDescription
@@ -14,8 +14,8 @@ let package = Package(
1414
)
1515
],
1616
dependencies: [
17-
.package(url: "https://github.com/weichsel/ZIPFoundation", exact: .init(0, 9, 19)),
18-
.package(url: "https://github.com/Alamofire/Alamofire.git", exact: .init(5, 10, 2)),
17+
.package(url: "https://github.com/weichsel/ZIPFoundation", exact: .init(0, 9, 20)),
18+
.package(url: "https://github.com/Alamofire/Alamofire.git", exact: .init(5, 11, 2)),
1919
.package(path: "../CommonsLib")
2020
],
2121
targets: [

Modules/UtilsLib/Package.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// swift-tools-version: 6.2
1+
// swift-tools-version: 6.3
22
// The swift-tools-version declares the minimum version of Swift required to build this package.
33

44
import PackageDescription
@@ -16,8 +16,8 @@ let package = Package(
1616
],
1717
dependencies: [
1818
.package(url: "https://github.com/hmlongco/Factory", exact: .init(2, 5, 3)),
19-
.package(url: "https://github.com/Alamofire/Alamofire.git", exact: .init(5, 10, 2)),
20-
.package(url: "https://github.com/weichsel/ZIPFoundation", exact: .init(0, 9, 19)),
19+
.package(url: "https://github.com/Alamofire/Alamofire.git", exact: .init(5, 11, 2)),
20+
.package(url: "https://github.com/weichsel/ZIPFoundation", exact: .init(0, 9, 20)),
2121
.package(path: "../CommonsLib"),
2222
.package(path: "../ConfigLib"),
2323
.package(path: "../Test/CommonsTestShared")

0 commit comments

Comments
 (0)