From 0ef717e1ced926f8446b0d0fed4e9b401078b851 Mon Sep 17 00:00:00 2001 From: Richard McCarthy Date: Mon, 31 Jul 2023 11:58:47 +0100 Subject: [PATCH] update git actions v2 use node 12 --- .github/workflows/codeql-analysis.yaml | 2 +- .github/workflows/pull_request.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/codeql-analysis.yaml b/.github/workflows/codeql-analysis.yaml index d64a22d..0a350aa 100644 --- a/.github/workflows/codeql-analysis.yaml +++ b/.github/workflows/codeql-analysis.yaml @@ -35,7 +35,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/pull_request.yaml b/.github/workflows/pull_request.yaml index c82c44b..c8344af 100644 --- a/.github/workflows/pull_request.yaml +++ b/.github/workflows/pull_request.yaml @@ -9,10 +9,10 @@ jobs: test: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - run: | echo "PYTHON_VERSION=$(cat .python-version)" >> $GITHUB_ENV - - uses: actions/setup-python@v2 + - uses: actions/setup-python@v3 with: python-version: ${{ env.PYTHON_VERSION }} - name: Install Pipenv