Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: macos-14 # Apple Silicon Runner

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: n1hility/cancel-previous-runs@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/detect-api-changes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
runs-on: macos-14 # Apple Silicon Runner

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: n1hility/cancel-previous-runs@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -28,7 +28,7 @@
xcode-version: '15.4'

- name: 🚚 Fetch repo
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0

Expand All @@ -37,7 +37,7 @@
NEW="${{ env.source }}~${{ env.headGithubRepo }}"
OLD="${{ env.target }}~${{ env.baseGithubRepo }}"

if [[ '${{ env.targetBranchName || env.noTargetBranch }}' == release/* ]]

Check failure on line 40 in .github/workflows/detect-api-changes.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Change this workflow to not use user-controlled data directly in a run block.

See more on https://sonarcloud.io/project/issues?id=Adyen_adyen-swift-public-api-diff&issues=AZrrY-sbUaUhqWGyJ8B8&open=AZrrY-sbUaUhqWGyJ8B8&pullRequest=135
then
LATEST_TAG=$(git describe --tags --abbrev=0)
OLD="$LATEST_TAG~${{ env.baseGithubRepo }}"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: macos-15 # Apple Silicon Runner

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: n1hility/cancel-previous-runs@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
echo "PROJECT_FOLDER=$(pwd)" >> $GITHUB_ENV
shell: bash

- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
repository: "Adyen/adyen-swift-public-api-diff"
ref: ${{ env.VERSION_NUMBER }}
Expand Down Expand Up @@ -59,9 +59,9 @@

- name: 🏃 Run Diff
run: |
NEW=${{ inputs.new }}

Check failure on line 62 in action.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Change this action to not use user-controlled data directly in a run block.

See more on https://sonarcloud.io/project/issues?id=Adyen_adyen-swift-public-api-diff&issues=AZrrY-uyUaUhqWGyJ8CE&open=AZrrY-uyUaUhqWGyJ8CE&pullRequest=135
OLD=${{ inputs.old }}

Check failure on line 63 in action.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Change this action to not use user-controlled data directly in a run block.

See more on https://sonarcloud.io/project/issues?id=Adyen_adyen-swift-public-api-diff&issues=AZrrY-uyUaUhqWGyJ8CF&open=AZrrY-uyUaUhqWGyJ8CF&pullRequest=135
PLATFORM=${{ inputs.platform }}

Check failure on line 64 in action.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Change this action to not use user-controlled data directly in a run block.

See more on https://sonarcloud.io/project/issues?id=Adyen_adyen-swift-public-api-diff&issues=AZrrY-uyUaUhqWGyJ8CG&open=AZrrY-uyUaUhqWGyJ8CG&pullRequest=135
BINARY_PATH=${{ env.BINARY_PATH }}

echo "▶️ Running binary at $BINARY_PATH"
Expand Down
Loading