From a2cd37cf531af77e4e01fabcc1a90a98a853a7a9 Mon Sep 17 00:00:00 2001 From: Orestis Floros Date: Tue, 5 Sep 2023 12:41:05 +0200 Subject: Update to actions/checkout@v4 Update to [actions/checkout@v4](https://github.com/actions/checkout/releases/tag/v4.0.0) According to https://github.com/actions/checkout/issues/1448 it might fix the issue we are encountering. Even if it doesn't, no apparent harm from using the latest version. --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 7e9cbecd..d711f0f5 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -23,7 +23,7 @@ jobs: BALTO_TOKEN: ${{ secrets.BALTO_TOKEN }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: git fetch --prune --unshallow - name: construct container name run: | @@ -79,7 +79,7 @@ jobs: name: Check formatting runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: check & print release notes run: ./release-notes/generator.pl - name: Install dependencies -- cgit v1.2.3-54-g00ecf