Skip to content

Commit

Permalink
Switches to version 4 of the checkout GitHub action
Browse files Browse the repository at this point in the history
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
  • Loading branch information
ecampidoglio committed Sep 30, 2024
1 parent e313098 commit 6ea9cab
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 6ea9cab

Please sign in to comment.