From f5655dcb0c8e1292f21e2760dd3ba401b7db459e Mon Sep 17 00:00:00 2001 From: Jan Kiszka Date: Thu, 5 Jan 2023 20:17:20 +0100 Subject: [PATCH] ci: Update to actions/checkout@v3 and actions/setup-python@v4 Silences some NodeJS 12 action deprecation warnings. Signed-off-by: Jan Kiszka --- .github/workflows/master.yml | 2 +- .github/workflows/next.yml | 6 +++--- .github/workflows/release.yml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index c119dc5..8026417 100644 --- a/.github/workflows/master.yml +++ b/.github/workflows/master.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out repo - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 - name: Identify release build diff --git a/.github/workflows/next.yml b/.github/workflows/next.yml index f819a75..1dd5971 100644 --- a/.github/workflows/next.yml +++ b/.github/workflows/next.yml @@ -20,9 +20,9 @@ jobs: python-version: ["3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11"] steps: - name: Check out repo - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Set up Python - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} architecture: x64 @@ -67,7 +67,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out repo - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Set up QEMU uses: docker/setup-qemu-action@v1 - name: Set up Docker Buildx diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ba3afca..439f56e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out repo - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Get release run: echo "RELEASE_VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV - name: Set up QEMU