From 7dfa644d0675c80901040ce992a0b2af086d17ec Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 30 Jul 2022 16:10:19 +0200 Subject: [PATCH] Bump actions/checkout from 2 to 3 (#8310) 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] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/create-wheels.yaml | 6 +++--- .github/workflows/run-on-pr.yaml | 8 ++++---- .github/workflows/run-test.yaml | 10 +++++----- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/create-wheels.yaml b/.github/workflows/create-wheels.yaml index 53ac9007e2..5650552266 100644 --- a/.github/workflows/create-wheels.yaml +++ b/.github/workflows/create-wheels.yaml @@ -39,7 +39,7 @@ jobs: steps: - name: Checkout repo - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Set up Python uses: actions/setup-python@v4 @@ -124,7 +124,7 @@ jobs: steps: - name: Checkout repo - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Get python version id: linux-py-version @@ -241,7 +241,7 @@ jobs: steps: - name: Checkout repo - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Remove tag_build from setup.cfg # sqlalchemy has `tag_build` set to `dev` in setup.cfg. We need to remove it before creating the weel diff --git a/.github/workflows/run-on-pr.yaml b/.github/workflows/run-on-pr.yaml index 56e2a67435..1a622bfd1f 100644 --- a/.github/workflows/run-on-pr.yaml +++ b/.github/workflows/run-on-pr.yaml @@ -37,7 +37,7 @@ jobs: # steps to run in each job. Some are github actions, others run shell commands steps: - name: Checkout repo - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Set up python uses: actions/setup-python@v4 @@ -70,7 +70,7 @@ jobs: # steps to run in each job. Some are github actions, others run shell commands steps: - name: Checkout repo - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Set up python uses: actions/setup-python@v4 @@ -103,7 +103,7 @@ jobs: # steps to run in each job. Some are github actions, others run shell commands steps: - name: Checkout repo - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Set up python uses: actions/setup-python@v4 @@ -135,7 +135,7 @@ jobs: # steps: # - name: Checkout repo - # uses: actions/checkout@v2 + # uses: actions/checkout@v3 # - name: Set up emulation # run: | diff --git a/.github/workflows/run-test.yaml b/.github/workflows/run-test.yaml index 6f9be629fb..035b22017a 100644 --- a/.github/workflows/run-test.yaml +++ b/.github/workflows/run-test.yaml @@ -70,7 +70,7 @@ jobs: # steps to run in each job. Some are github actions, others run shell commands steps: - name: Checkout repo - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Set up python uses: actions/setup-python@v4 @@ -105,7 +105,7 @@ jobs: steps: - name: Checkout repo - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Set up emulation run: | @@ -141,7 +141,7 @@ jobs: # steps to run in each job. Some are github actions, others run shell commands steps: - name: Checkout repo - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Set up python uses: actions/setup-python@v4 @@ -174,7 +174,7 @@ jobs: # steps to run in each job. Some are github actions, others run shell commands steps: - name: Checkout repo - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Set up python uses: actions/setup-python@v4 @@ -207,7 +207,7 @@ jobs: # steps to run in each job. Some are github actions, others run shell commands steps: - name: Checkout repo - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Set up python uses: actions/setup-python@v4 -- 2.47.3