From c906e2a5121d1eb2acdeb88b3caf9fadebfd1c1b Mon Sep 17 00:00:00 2001 From: Mark Goddard Date: Thu, 26 Jan 2023 12:21:33 +0000 Subject: [PATCH] CI: Update versions used of community GitHub Actions DEV-1359 Syncing the versions of community actions used to the latest major version. This should avoid deprecation warnings seen in GitHub Actions. https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/ --- .github/workflows/pull_request.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 2c10419..72afa4a 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -20,9 +20,9 @@ jobs: - "2.12" steps: # Checks-out the repository under $GITHUB_WORKSPACE, so it's accessible to the job - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - - uses: actions/setup-python@v2 + - uses: actions/setup-python@v4 - name: Install dependencies run: | @@ -54,9 +54,9 @@ jobs: - "3.21" steps: # Checks-out the repository under $GITHUB_WORKSPACE, so it's accessible to the job - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - - uses: actions/setup-python@v2 + - uses: actions/setup-python@v4 - name: Install dependencies run: |