From 80947a45af08d30817fe8b990ebef909f6529767 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Sep 2023 16:32:01 +0000 Subject: [PATCH] Bump actions/checkout from 2 to 4 Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 4. - [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...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/PR.yml | 2 +- .github/workflows/Publish-Website.yml | 2 +- .github/workflows/Release.yml | 4 ++-- .github/workflows/rebase.yml | 2 +- .github/workflows/sql-psi-dev.yml | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/PR.yml b/.github/workflows/PR.yml index f169f755..459332f8 100644 --- a/.github/workflows/PR.yml +++ b/.github/workflows/PR.yml @@ -26,7 +26,7 @@ jobs: steps: - name: Checkout the repo - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Validate Gradle Wrapper uses: gradle/wrapper-validation-action@v1 - name: Cache gradle diff --git a/.github/workflows/Publish-Website.yml b/.github/workflows/Publish-Website.yml index c68986c9..819c554a 100644 --- a/.github/workflows/Publish-Website.yml +++ b/.github/workflows/Publish-Website.yml @@ -10,7 +10,7 @@ jobs: steps: - name: Checkout the repo - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v2 diff --git a/.github/workflows/Release.yml b/.github/workflows/Release.yml index b5818d1e..8003dab7 100644 --- a/.github/workflows/Release.yml +++ b/.github/workflows/Release.yml @@ -17,7 +17,7 @@ jobs: steps: - name: Checkout the repo - uses: actions/checkout@v2 + uses: actions/checkout@v4 - uses: actions/cache@v2.1.6 with: path: ~/.gradle/caches @@ -45,7 +45,7 @@ jobs: needs: publish_archives steps: - name: Checkout the repo - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Publish the plugin artifacts env: ORG_GRADLE_PROJECT_SQLDELIGHT_BUGSNAG_KEY: ${{ secrets.ORG_GRADLE_PROJECT_SQLDELIGHT_BUGSNAG_KEY }} diff --git a/.github/workflows/rebase.yml b/.github/workflows/rebase.yml index 74daa924..1651ef19 100644 --- a/.github/workflows/rebase.yml +++ b/.github/workflows/rebase.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout the latest code - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: token: ${{ secrets.REBASE_TOKEN }} fetch-depth: 0 # otherwise, you will fail to push refs to dest repo diff --git a/.github/workflows/sql-psi-dev.yml b/.github/workflows/sql-psi-dev.yml index 52dc26f0..3d55731a 100644 --- a/.github/workflows/sql-psi-dev.yml +++ b/.github/workflows/sql-psi-dev.yml @@ -9,7 +9,7 @@ jobs: rebase: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: fetch-depth: 0 - run: |