From 89d6ff8fd5a13f7170f33c347f69d5710728305c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 12 Aug 2025 01:46:59 +0000 Subject: [PATCH 1/2] Bump actions/checkout from 4 to 5 in the dependencies group Bumps the dependencies group with 1 update: [actions/checkout](https://github.com/actions/checkout). Updates `actions/checkout` from 4 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies ... Signed-off-by: dependabot[bot] --- .github/workflows/api-breakage.yml | 2 +- .github/workflows/ci.yml | 6 +++--- .github/workflows/gen-docs.yml | 2 +- .github/workflows/validate.yml | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/api-breakage.yml b/.github/workflows/api-breakage.yml index 9d88f6e..ec650aa 100644 --- a/.github/workflows/api-breakage.yml +++ b/.github/workflows/api-breakage.yml @@ -10,7 +10,7 @@ jobs: image: swift:5.9 steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 # https://github.com/actions/checkout/issues/766 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a36d524..32bd3ee 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: timeout-minutes: 15 steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Install and run Mosquitto run: | brew install mosquitto @@ -44,7 +44,7 @@ jobs: timeout-minutes: 15 steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Xcodebuild run: | xcodebuild build -scheme mqtt-nio -destination 'platform=iOS Simulator,name=iPhone 11' @@ -77,7 +77,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Restart Mosquitto # The mosquitto service container is started *before* mqtt-nio is checked # out. Restarting the container after the checkout step is needed for the diff --git a/.github/workflows/gen-docs.yml b/.github/workflows/gen-docs.yml index 8f78945..41297e4 100644 --- a/.github/workflows/gen-docs.yml +++ b/.github/workflows/gen-docs.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 - name: Install Dependencies diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 434025a..25fa26e 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -12,7 +12,7 @@ jobs: timeout-minutes: 15 steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 1 - name: run script From bf6f81d09c6e22b395501bc626743b717ba17e88 Mon Sep 17 00:00:00 2001 From: Adam Fowler Date: Tue, 12 Aug 2025 10:55:28 +0200 Subject: [PATCH 2/2] iOS ci fix --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 32bd3ee..31f656a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -47,7 +47,7 @@ jobs: uses: actions/checkout@v5 - name: Xcodebuild run: | - xcodebuild build -scheme mqtt-nio -destination 'platform=iOS Simulator,name=iPhone 11' + xcodebuild build -scheme mqtt-nio -destination 'platform=iOS Simulator,name=iPhone 16' linux: runs-on: ubuntu-latest