From a191b533485ded4e3d080f0f3b4f335c777e1488 Mon Sep 17 00:00:00 2001 From: Dirk Stolle Date: Sun, 27 Nov 2022 18:21:23 +0100 Subject: [PATCH] Update actions/checkout in GitHub Actions workflows to v3 --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a71b4bd..9f4fdf1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,7 +13,7 @@ jobs: container: docker.io/library/debian:sid steps: - name: Checkout Source - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Update repository run: apt-get update -y - name: Install the basic dev packages @@ -28,7 +28,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Source - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Update repository run: sudo apt-get update -y - name: Install the basic dev packages