From a2a9a71f863584d91820dad40e1b076457403883 Mon Sep 17 00:00:00 2001 From: Robin Vobruba Date: Mon, 20 Jan 2025 07:16:09 +0100 Subject: [PATCH] CI: Updates checkout action to v4 --- .github/workflows/build.yml | 2 +- .github/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e2b16c4..61d438e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -26,7 +26,7 @@ jobs: runs-on: ubuntu-latest steps: - name: "Check out the repo" - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: # This makes sure we also get tags, # so we get the correct version; see bug: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 40f76e0..58eb7e7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -40,7 +40,7 @@ jobs: our_version: ${{ env.OUR_VERSION }} steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 if: env.OUR_VERSION == '' with: # This makes sure we also get tags,