From 05c9ea54aba006eb794a5134c62ff8b9868ab28a Mon Sep 17 00:00:00 2001 From: Jasmin <4738799+jaeilers@users.noreply.github.com> Date: Thu, 14 May 2026 10:08:28 +0200 Subject: [PATCH 1/2] chore: Improve job security --- .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 cc0dc62..fe08fc2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -42,7 +42,7 @@ jobs: dependabot-auto-merge: runs-on: ubuntu-latest needs: run-tests - if: github.actor == 'dependabot[bot]' && github.event_name == 'pull_request' + if: github.event.pull_request.user.login == 'dependabot[bot]' && github.event_name == 'pull_request' permissions: contents: write pull-requests: write From 7a14777db840d6f40af448acc4c547505d4e1a11 Mon Sep 17 00:00:00 2001 From: Jasmin <4738799+jaeilers@users.noreply.github.com> Date: Thu, 14 May 2026 10:16:41 +0200 Subject: [PATCH 2/2] Use Xcode 26.4 due to missing simulators in latest version --- .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 fe08fc2..8f0a40a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: - name: Select Xcode version uses: maxim-lobanov/setup-xcode@v1 with: - xcode-version: '26' + xcode-version: '26.4' - name: Build and Test run: xcodebuild build test -scheme JESideMenuController -destination "platform=iOS Simulator,name=${SIMULATOR_NAME}" -enableCodeCoverage YES