From b3575699c3348083e6e0f609ddeb52bd887fcf45 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 9 Mar 2022 06:39:42 +0000 Subject: [PATCH] Bump actions/checkout from 2 to 3 Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [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/v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci-swiftpm.yml | 4 ++-- .github/workflows/ci-xcode.yml | 2 +- .github/workflows/cocoapods.yml | 2 +- .github/workflows/danger.yml | 2 +- .github/workflows/swiftlint.yml | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci-swiftpm.yml b/.github/workflows/ci-swiftpm.yml index e4a986e5a..d87b9e695 100644 --- a/.github/workflows/ci-swiftpm.yml +++ b/.github/workflows/ci-swiftpm.yml @@ -31,7 +31,7 @@ jobs: env: DEVELOPER_DIR: "/Applications/Xcode_${{ matrix.xcode }}.app" steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 if: ${{ needs.filter.outputs.should_skip != 'true' }} - run: rake test:swiftpm if: ${{ needs.filter.outputs.should_skip != 'true' }} @@ -50,7 +50,7 @@ jobs: fail-fast: false container: ${{ matrix.container }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 if: ${{ needs.filter.outputs.should_skip != 'true' }} - run: swift build -Xswiftc -suppress-warnings if: ${{ needs.filter.outputs.should_skip != 'true' }} diff --git a/.github/workflows/ci-xcode.yml b/.github/workflows/ci-xcode.yml index 5b4ba0ab6..06c8aa60d 100644 --- a/.github/workflows/ci-xcode.yml +++ b/.github/workflows/ci-xcode.yml @@ -32,7 +32,7 @@ jobs: env: DEVELOPER_DIR: "/Applications/Xcode_${{ matrix.xcode }}.app" steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: submodules: true if: ${{ needs.filter.outputs.should_skip != 'true' }} diff --git a/.github/workflows/cocoapods.yml b/.github/workflows/cocoapods.yml index 9b2fa8129..1b82c9651 100644 --- a/.github/workflows/cocoapods.yml +++ b/.github/workflows/cocoapods.yml @@ -25,7 +25,7 @@ jobs: needs: filter runs-on: macos-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 if: ${{ needs.filter.outputs.should_skip != 'true' }} - uses: ruby/setup-ruby@v1 with: diff --git a/.github/workflows/danger.yml b/.github/workflows/danger.yml index 5dbfe7e1f..7bad46906 100644 --- a/.github/workflows/danger.yml +++ b/.github/workflows/danger.yml @@ -8,7 +8,7 @@ jobs: name: Danger runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 - uses: ruby/setup-ruby@v1 diff --git a/.github/workflows/swiftlint.yml b/.github/workflows/swiftlint.yml index 520f278b2..060370087 100644 --- a/.github/workflows/swiftlint.yml +++ b/.github/workflows/swiftlint.yml @@ -11,5 +11,5 @@ jobs: lint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: norio-nomura/action-swiftlint@3.2.1