From 3abbebd637f3ad15cb5e4745c439e0c98b4241cf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 1 Mar 2022 20:04:24 +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/assign-reviewers.yml | 2 +- .github/workflows/codeql-analysis.yml | 2 +- .github/workflows/insiders.yml | 12 ++++++------ .github/workflows/pr-check.yml | 12 ++++++------ .github/workflows/release.yml | 10 +++++----- 5 files changed, 19 insertions(+), 19 deletions(-) diff --git a/.github/workflows/assign-reviewers.yml b/.github/workflows/assign-reviewers.yml index 435e6bc31f4f..cbbcc6e92381 100644 --- a/.github/workflows/assign-reviewers.yml +++ b/.github/workflows/assign-reviewers.yml @@ -16,7 +16,7 @@ jobs: if: github.repository == 'microsoft/vscode-python' steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Install Python uses: actions/setup-python@v2 diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 822f9deb1d25..f142dddc3538 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -33,7 +33,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/insiders.yml b/.github/workflows/insiders.yml index 92ddc7e2fe16..f93d9f585b51 100644 --- a/.github/workflows/insiders.yml +++ b/.github/workflows/insiders.yml @@ -27,7 +27,7 @@ jobs: if: github.repository == 'microsoft/vscode-python' steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Install Node uses: actions/setup-node@v2.1.5 @@ -62,7 +62,7 @@ jobs: if: github.repository == 'microsoft/vscode-python' steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Install Node uses: actions/setup-node@v2.1.5 @@ -121,7 +121,7 @@ jobs: test-suite: [ts-unit, python-unit, venv, single-workspace, multi-workspace, debugger, functional] steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: path: ${{env.special-working-directory-relative}} @@ -329,7 +329,7 @@ jobs: steps: # Need the source to have the tests available. - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Install Node uses: actions/setup-node@v2.1.5 @@ -396,7 +396,7 @@ jobs: steps: # Need the source to have the tests available. - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Install Node uses: actions/setup-node@v2.1.5 @@ -458,7 +458,7 @@ jobs: # Checkout the repo in the same way as how the tests are run, # or nyc won't know how to reconcile the reports generated by the tests. - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: path: ${{env.special-working-directory-relative}} diff --git a/.github/workflows/pr-check.yml b/.github/workflows/pr-check.yml index fafbb61be550..7b514dff8e4e 100644 --- a/.github/workflows/pr-check.yml +++ b/.github/workflows/pr-check.yml @@ -28,7 +28,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Install Node uses: actions/setup-node@v2.1.5 @@ -62,7 +62,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Install Node uses: actions/setup-node@v2.1.5 @@ -124,7 +124,7 @@ jobs: python: '2.7' steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: path: ${{env.special-working-directory-relative}} @@ -331,7 +331,7 @@ jobs: steps: # Need the source to have the tests available. - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Install Node uses: actions/setup-node@v2.1.5 @@ -397,7 +397,7 @@ jobs: steps: # Need the source to have the tests available. - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Install Node uses: actions/setup-node@v2.1.5 @@ -458,7 +458,7 @@ jobs: # Checkout the repo in the same way as how the tests are run, # or nyc won't know how to reconcile the reports generated by the tests. - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: path: ${{env.special-working-directory-relative}} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2a15bde0cf96..65a38661e994 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -25,7 +25,7 @@ jobs: if: github.repository == 'microsoft/vscode-python' steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Install Node uses: actions/setup-node@v2.1.5 @@ -62,7 +62,7 @@ jobs: if: github.repository == 'microsoft/vscode-python' steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Install Node uses: actions/setup-node@v2.1.5 @@ -114,7 +114,7 @@ jobs: test-suite: [ts-unit, python-unit, venv, single-workspace, multi-workspace, debugger, functional] steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: path: ${{env.special-working-directory-relative}} @@ -312,7 +312,7 @@ jobs: steps: # Need the source to have the tests available. - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Install Node uses: actions/setup-node@v2.1.5 @@ -379,7 +379,7 @@ jobs: steps: # Need the source to have the tests available. - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Install Node uses: actions/setup-node@v2.1.5