This is an automated email from the ASF dual-hosted git repository.
slawrence pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-daffodil.git
The following commit(s) were added to refs/heads/master by this push:
new f2b1271 Update github actions/checkout to use v2.0.0
f2b1271 is described below
commit f2b12718e0329ecd7dc4aac01e888426cc514ea2
Author: Steve Lawrence <[email protected]>
AuthorDate: Tue Mar 24 10:49:41 2020 -0400
Update github actions/checkout to use v2.0.0
There is a bug in actions/checkout v1.0.0 that prevents re-running a
github workflow, which is needed in some cases when there is a random
failure (e.g. network failure downloaded dependencies). This updates it
to v2.0.0, which fixes this issue. Also updates SonarCloud to use a
specific version instead of master. We've had issues in the past where
the master branch was undergoing development and broke our builds.
Sticking to a specific version prevents that.
DAFFODIL-2301
---
.github/workflows/main.yml | 2 +-
.github/workflows/sonarcloud.yml | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index c3d5991..3b885bf 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -34,7 +34,7 @@ jobs:
############################################################
- name: Checkout Repository
- uses: actions/[email protected]
+ uses: actions/[email protected]
- name: Install Dependencies (Windows)
run: |
diff --git a/.github/workflows/sonarcloud.yml b/.github/workflows/sonarcloud.yml
index e8d86b0..9c37277 100644
--- a/.github/workflows/sonarcloud.yml
+++ b/.github/workflows/sonarcloud.yml
@@ -30,7 +30,7 @@ jobs:
############################################################
- name: Checkout Repository
- uses: actions/checkout@master
+ uses: actions/[email protected]
############################################################
# Build & Scan