From e15e2343ef5c1e0219c23d2b8ef90e2671bcc199 Mon Sep 17 00:00:00 2001 From: Paula Camargo Date: Thu, 9 Nov 2023 16:01:35 -0800 Subject: [PATCH] update ubuntu --- .github/workflows/pr-check.yml | 10 +++++----- .github/workflows/push-check.yml | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/pr-check.yml b/.github/workflows/pr-check.yml index c69bfad7..91315e76 100644 --- a/.github/workflows/pr-check.yml +++ b/.github/workflows/pr-check.yml @@ -13,7 +13,7 @@ env: jobs: build-vsix: name: Create VSIX - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 steps: - name: Checkout uses: actions/checkout@v3 @@ -25,7 +25,7 @@ jobs: lint: name: Lint - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 steps: - name: Checkout uses: actions/checkout@v3 @@ -44,7 +44,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest, windows-latest] + os: [ubuntu-20.04, windows-latest] python: ['3.6'] steps: @@ -54,7 +54,7 @@ jobs: path: ${{ env.special-working-directory-relative }} - name: Use Python 3.6 - uses: actions/setup-python@v3 + uses: actions/setup-python@v4 with: python-version: '3.6' @@ -80,7 +80,7 @@ jobs: # Now that the bundle is installed to target using python 3.6 # switch back the python we want to test with - name: Use Python ${{ matrix.python }} - uses: actions/setup-python@v3 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python }} diff --git a/.github/workflows/push-check.yml b/.github/workflows/push-check.yml index dd2de420..f16a80af 100644 --- a/.github/workflows/push-check.yml +++ b/.github/workflows/push-check.yml @@ -18,7 +18,7 @@ env: jobs: build-vsix: name: Create VSIX - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 steps: - name: Checkout uses: actions/checkout@v3 @@ -30,7 +30,7 @@ jobs: lint: name: Lint - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 steps: - name: Checkout uses: actions/checkout@v3 @@ -49,7 +49,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest, windows-latest] + os: [ubuntu-20.04, windows-latest] python: ['6'] steps: @@ -59,7 +59,7 @@ jobs: path: ${{ env.special-working-directory-relative }} - name: Use Python 3.6 - uses: actions/setup-python@v3 + uses: actions/setup-python@v4 with: python-version: '3.6' @@ -85,7 +85,7 @@ jobs: # Now that the bundle is installed to target using python 3.6 # switch back the python we want to test with - name: Use Python ${{ matrix.python }} - uses: actions/setup-python@v3 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python }}