From 6e4d24833db809872e6d977bc4ea6aa150d1ea4d Mon Sep 17 00:00:00 2001 From: JP Simard Date: Sat, 23 Mar 2024 16:21:34 -0400 Subject: [PATCH] Bump dependencies and Swift versions (#411) --- .bcr/presubmit.yml | 2 +- .github/workflows/bazel.yml | 2 +- .github/workflows/cmake.yml | 2 +- .github/workflows/swiftlint.yml | 2 +- .github/workflows/swiftpm.yml | 2 +- MODULE.bazel | 6 +++--- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.bcr/presubmit.yml b/.bcr/presubmit.yml index d250e8b4..a6281f7c 100644 --- a/.bcr/presubmit.yml +++ b/.bcr/presubmit.yml @@ -9,7 +9,7 @@ tasks: platform: ubuntu2004 environment: CC: "clang" - SWIFT_VERSION: "5.8.1" + SWIFT_VERSION: "5.10" SWIFT_HOME: "$HOME/swift-$SWIFT_VERSION" PATH: "$PATH:$SWIFT_HOME/usr/bin" shell_commands: *shell_commands diff --git a/.github/workflows/bazel.yml b/.github/workflows/bazel.yml index 492761b7..c2ae2a36 100644 --- a/.github/workflows/bazel.yml +++ b/.github/workflows/bazel.yml @@ -35,7 +35,7 @@ jobs: Linux: strategy: matrix: - tag: ['5.4', '5.5', '5.6', '5.7', '5.8', '5.9'] + tag: ['5.4', '5.5', '5.6', '5.7', '5.8', '5.9', '5.10'] runs-on: ubuntu-latest container: image: swift:${{ matrix.tag }}-focal diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 3ef1bc47..80c3dc82 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -42,7 +42,7 @@ jobs: CMake_Linux: strategy: matrix: - tag: ['5.6', '5.7', '5.8', '5.9'] + tag: ['5.6', '5.7', '5.8', '5.9', '5.10'] runs-on: ubuntu-latest container: image: swift:${{ matrix.tag }} diff --git a/.github/workflows/swiftlint.yml b/.github/workflows/swiftlint.yml index 95355a16..1ba3f71f 100644 --- a/.github/workflows/swiftlint.yml +++ b/.github/workflows/swiftlint.yml @@ -11,7 +11,7 @@ jobs: SwiftLint: runs-on: ubuntu-latest container: - image: ghcr.io/realm/swiftlint:0.53.0 + image: ghcr.io/realm/swiftlint:0.54.0 steps: - uses: actions/checkout@v3 - name: SwiftLint diff --git a/.github/workflows/swiftpm.yml b/.github/workflows/swiftpm.yml index 8fd97095..9f1aa073 100644 --- a/.github/workflows/swiftpm.yml +++ b/.github/workflows/swiftpm.yml @@ -75,7 +75,7 @@ jobs: Linux: strategy: matrix: - tag: ['5.4', '5.5', '5.6', '5.7', '5.8', '5.9'] + tag: ['5.4', '5.5', '5.6', '5.7', '5.8', '5.9', '5.10'] runs-on: ubuntu-latest container: image: swift:${{ matrix.tag }} diff --git a/MODULE.bazel b/MODULE.bazel index be91d0b6..60abd3f6 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -4,7 +4,7 @@ module( compatibility_level = 1, ) -bazel_dep(name = "rules_swift", version = "1.12.0", repo_name = "build_bazel_rules_swift") +bazel_dep(name = "rules_swift", version = "1.17.0", repo_name = "build_bazel_rules_swift") -bazel_dep(name = "platforms", version = "0.0.7", dev_dependency = True) -bazel_dep(name = "rules_apple", version = "3.0.0", dev_dependency = True) +bazel_dep(name = "platforms", version = "0.0.9", dev_dependency = True) +bazel_dep(name = "rules_apple", version = "3.3.0", dev_dependency = True)