From 6ea9cab62d2a85e6fe96057ae0878833f30aab2d Mon Sep 17 00:00:00 2001 From: Enrico Campidoglio Date: Mon, 30 Sep 2024 16:02:20 +0200 Subject: [PATCH] Switches to version 4 of the `checkout` GitHub action Version 1 of the `checkout` GitHub action is supposedly triggering an issue in Coveralls, which causes the build to fail sporadically. For more details on the issue, see lemurheavy/coveralls-public#1595 --- .github/workflows/build.yml | 2 +- .github/workflows/test.yml | 2 +- README.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 95ae18b..2bf45e1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,7 +13,7 @@ jobs: os: [windows-latest, ubuntu-latest] steps: - name: Get the sources - uses: actions/checkout@v1 + uses: actions/checkout@v4 - name: Install Node 20 uses: actions/setup-node@v4 with: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 61328cd..6b67649 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,7 +12,7 @@ jobs: tools-directory: integrationtests/script/tools steps: - name: Get the sources - uses: actions/checkout@v1 + uses: actions/checkout@v4 - name: Install Node 20 uses: actions/setup-node@v4 with: diff --git a/README.md b/README.md index 54e7a5b..10096cd 100644 --- a/README.md +++ b/README.md @@ -150,7 +150,7 @@ jobs: os: [windows-latest, ubuntu-latest, macOS-latest] steps: - name: Get the sources - uses: actions/checkout@v1 + uses: actions/checkout@v4 - name: Run the build script uses: cake-build/cake-action@v2 with: