From 88813f0f9f5761951eb1e99ecb562a8e232c752d Mon Sep 17 00:00:00 2001 From: "hummingbird-automation[bot]" <168462326+hummingbird-automation[bot]@users.noreply.github.com> Date: Tue, 30 Apr 2024 10:41:19 +0100 Subject: [PATCH] Update from hummingbird-project-template 3760367c75162a70d0c75c1dc2ed1f70e660941f (#18) Co-authored-by: adam-fowler --- .github/dependabot.yml | 2 +- .github/workflows/api-breakage.yml | 3 +-- .github/workflows/ci.yml | 2 +- Dockerfile | 4 ++-- 4 files changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 998fd4c..a54e14d 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -12,7 +12,7 @@ updates: directory: "/" schedule: interval: "daily" - open-pull-requests-limit: 6 + open-pull-requests-limit: 5 allow: - dependency-type: all groups: diff --git a/.github/workflows/api-breakage.yml b/.github/workflows/api-breakage.yml index dd4bcb4..9919108 100644 --- a/.github/workflows/api-breakage.yml +++ b/.github/workflows/api-breakage.yml @@ -1,4 +1,3 @@ -# This will be interesting to see how often AWS break there own APIs name: API breaking changes on: @@ -9,7 +8,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 15 container: - image: swift:5.9 + image: swift:5.10 steps: - name: Checkout uses: actions/checkout@v4 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index afeeda6..8f94b85 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: timeout-minutes: 15 strategy: matrix: - image: ["swift:5.9", "swift:5.10", "swiftlang/swift:nightly-jammy"] + image: ["swift:5.9", "swift:5.10", "swiftlang/swift:nightly-6.0-jammy"] services: redis: image: redis diff --git a/Dockerfile b/Dockerfile index 102200f..2c1d78c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # ================================ # Build image # ================================ -FROM swift:5.9 as build +FROM swift:5.10 as build WORKDIR /build @@ -15,4 +15,4 @@ RUN swift package resolve # Copy entire repo into container COPY . . -RUN swift test --enable-test-discovery --sanitize=thread +RUN swift test --sanitize=thread