From f467870ab9e24d95c3be558f7311350c73013bfa Mon Sep 17 00:00:00 2001 From: Douglas Raillard Date: Wed, 31 May 2023 13:31:40 +0100 Subject: [PATCH] .github/workflows: Update action versions Use actions/checkout@v3 and actions/setup-python@v4 --- .github/workflows/mirror.yml | 2 +- .github/workflows/preview.yml | 2 +- .github/workflows/test.yml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/mirror.yml b/.github/workflows/mirror.yml index a5937d731..97aece1c4 100644 --- a/.github/workflows/mirror.yml +++ b/.github/workflows/mirror.yml @@ -23,7 +23,7 @@ jobs: steps: # Checks out a copy of your repository on the virtual machine - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: # Avoid a shallow clone fetch-depth: "0" diff --git a/.github/workflows/preview.yml b/.github/workflows/preview.yml index b3c69c63c..73e51dfe1 100644 --- a/.github/workflows/preview.yml +++ b/.github/workflows/preview.yml @@ -63,7 +63,7 @@ jobs: # anyway. repository: ARM-software/lisa - - uses: actions/setup-python@v2 + - uses: actions/setup-python@v4 with: python-version: "3.11" diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 668a7375d..9612016a2 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -50,7 +50,7 @@ jobs: steps: # Checks out a copy of your repository on the virtual machine - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: # Avoid a shallow clone, which breaks the check on external/ # modification and and provides inaccurate doc @@ -58,7 +58,7 @@ jobs: ref: ${{ github.event.inputs.ref || github.sha }} # Install the python version specified in the matrix - - uses: actions/setup-python@v2 + - uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} -- GitLab