diff --git a/.github/workflows/build-and-quality-checks-v2.yml b/.github/workflows/build-and-quality-checks-v2.yml index 6f539123..8d6f2130 100644 --- a/.github/workflows/build-and-quality-checks-v2.yml +++ b/.github/workflows/build-and-quality-checks-v2.yml @@ -11,7 +11,7 @@ jobs: steps: - name: Checkout source branch - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install xcpretty run: gem install xcpretty diff --git a/.github/workflows/build-and-quality-checks.yml b/.github/workflows/build-and-quality-checks.yml index 47d4437a..f4c903c5 100644 --- a/.github/workflows/build-and-quality-checks.yml +++ b/.github/workflows/build-and-quality-checks.yml @@ -11,7 +11,7 @@ jobs: steps: - name: Checkout source branch - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install xcpretty run: gem install xcpretty diff --git a/.github/workflows/check-pr-title.yml b/.github/workflows/check-pr-title.yml index 138b8d60..3059a72d 100644 --- a/.github/workflows/check-pr-title.yml +++ b/.github/workflows/check-pr-title.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout source branch - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Check PR title uses: rudderlabs/github-action-check-pr-title@v1.0.7 diff --git a/.github/workflows/deploy-cocoapods-beta.yml b/.github/workflows/deploy-cocoapods-beta.yml index a0439899..2a74d6ff 100644 --- a/.github/workflows/deploy-cocoapods-beta.yml +++ b/.github/workflows/deploy-cocoapods-beta.yml @@ -10,7 +10,7 @@ jobs: if: startsWith(github.ref, 'refs/heads/beta-release/') steps: - name: Checkout source branch - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install Cocoapods run: gem install cocoapods diff --git a/.github/workflows/deploy-cocoapods-manual-v2.yml b/.github/workflows/deploy-cocoapods-manual-v2.yml index 3c6cbbf2..14820478 100644 --- a/.github/workflows/deploy-cocoapods-manual-v2.yml +++ b/.github/workflows/deploy-cocoapods-manual-v2.yml @@ -10,7 +10,7 @@ jobs: if: startsWith(github.ref, 'refs/heads/master-v2') steps: - name: Checkout source branch - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install Cocoapods run: gem install cocoapods diff --git a/.github/workflows/deploy-cocoapods-manual.yml b/.github/workflows/deploy-cocoapods-manual.yml index 4814c41b..4f2906da 100644 --- a/.github/workflows/deploy-cocoapods-manual.yml +++ b/.github/workflows/deploy-cocoapods-manual.yml @@ -10,7 +10,7 @@ jobs: if: startsWith(github.ref, 'refs/heads/master') steps: - name: Checkout source branch - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install Cocoapods run: gem install cocoapods diff --git a/.github/workflows/deploy-cocoapods.yml b/.github/workflows/deploy-cocoapods.yml index a1707f50..f3fbfd5a 100644 --- a/.github/workflows/deploy-cocoapods.yml +++ b/.github/workflows/deploy-cocoapods.yml @@ -10,7 +10,7 @@ jobs: runs-on: macOS-latest steps: - name: Checkout source branch - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install Cocoapods run: gem install cocoapods diff --git a/.github/workflows/draft-new-beta-release.yml b/.github/workflows/draft-new-beta-release.yml index 0bb08fa3..26d7949c 100644 --- a/.github/workflows/draft-new-beta-release.yml +++ b/.github/workflows/draft-new-beta-release.yml @@ -14,7 +14,7 @@ jobs: if: startsWith(github.ref, 'refs/heads/fix/') || startsWith(github.ref, 'refs/heads/feat/') steps: - name: Checkout source branch - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/.github/workflows/draft-new-release-v2.yml b/.github/workflows/draft-new-release-v2.yml index 0a3de76a..0b85fcdb 100644 --- a/.github/workflows/draft-new-release-v2.yml +++ b/.github/workflows/draft-new-release-v2.yml @@ -10,7 +10,7 @@ jobs: if: startsWith(github.ref, 'refs/heads/develop-v2') || startsWith(github.ref, 'refs/heads/hotfix-v2/') steps: - name: Checkout source branch - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/.github/workflows/draft-new-release.yml b/.github/workflows/draft-new-release.yml index 462607d9..fb71e516 100644 --- a/.github/workflows/draft-new-release.yml +++ b/.github/workflows/draft-new-release.yml @@ -10,7 +10,7 @@ jobs: if: startsWith(github.ref, 'refs/heads/develop') || startsWith(github.ref, 'refs/heads/hotfix/') steps: - name: Checkout source branch - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/.github/workflows/publish-new-release-v2.yml b/.github/workflows/publish-new-release-v2.yml index 5f3a0343..6a40c422 100644 --- a/.github/workflows/publish-new-release-v2.yml +++ b/.github/workflows/publish-new-release-v2.yml @@ -22,7 +22,7 @@ jobs: echo "release_version=$VERSION" >> $GITHUB_OUTPUT - name: Checkout source branch - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/.github/workflows/publish-new-release.yml b/.github/workflows/publish-new-release.yml index 2430d28b..5d6a9298 100644 --- a/.github/workflows/publish-new-release.yml +++ b/.github/workflows/publish-new-release.yml @@ -22,7 +22,7 @@ jobs: echo "release_version=$VERSION" >> $GITHUB_OUTPUT - name: Checkout source branch - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/.github/workflows/test-v2.yml b/.github/workflows/test-v2.yml index 0f1335d4..6925c80e 100644 --- a/.github/workflows/test-v2.yml +++ b/.github/workflows/test-v2.yml @@ -14,7 +14,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install xcpretty run: gem install xcpretty diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 23abeb90..cd3f3449 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -15,7 +15,7 @@ jobs: BUILD_WRAPPER_OUT_DIR: build_wrapper_output_directory # Directory where build-wrapper output will be placed steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install sonar-scanner and build-wrapper uses: SonarSource/sonarcloud-github-c-cpp@v2