From c41835d96c8a867eb6a2cbfcff01e5db8a416859 Mon Sep 17 00:00:00 2001 From: Gregor Martynus Date: Thu, 18 Jun 2020 09:13:26 -0700 Subject: [PATCH 1/4] README example: `actions/checkout@master` -> `actions/checkout@v2` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a55132e7..085fb43b 100644 --- a/README.md +++ b/README.md @@ -87,7 +87,7 @@ jobs: # Checkout the code base # ########################## - name: Checkout Code - uses: actions/checkout@master + uses: actions/checkout@v2 ################################ # Run Linter against code base # From ee08e5c28508b8933bd1727f33487ea82f121aea Mon Sep 17 00:00:00 2001 From: Zack Koppert Date: Thu, 18 Jun 2020 10:35:16 -0700 Subject: [PATCH 2/4] checkout v2 instead of master --- .github/workflows/deploy-PROD.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy-PROD.yml b/.github/workflows/deploy-PROD.yml index ecb7038b..ab853943 100644 --- a/.github/workflows/deploy-PROD.yml +++ b/.github/workflows/deploy-PROD.yml @@ -35,7 +35,7 @@ jobs: # Checkout the code base # ########################## - name: Checkout Code - uses: actions/checkout@master + uses: actions/checkout@v2 ##################### # Run Deploy script # From bd6692eb7ac2335302249b72c45d40dd8696bd82 Mon Sep 17 00:00:00 2001 From: Zack Koppert Date: Thu, 18 Jun 2020 10:38:48 -0700 Subject: [PATCH 3/4] Set checkout to v2 --- .github/workflows/stack-linter.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/stack-linter.yml b/.github/workflows/stack-linter.yml index 1b3b527d..c6d8c58a 100644 --- a/.github/workflows/stack-linter.yml +++ b/.github/workflows/stack-linter.yml @@ -35,7 +35,7 @@ jobs: # Checkout the code base # ########################## - name: Checkout Code - uses: actions/checkout@master + uses: actions/checkout@v2 ################################ # Run Linter against code base # From 2b732be00481ace101bf14e744da752c2b95cf80 Mon Sep 17 00:00:00 2001 From: Zack Koppert Date: Thu, 18 Jun 2020 10:40:41 -0700 Subject: [PATCH 4/4] Set checkout to v2 --- .github/workflows/deploy-DEV.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy-DEV.yml b/.github/workflows/deploy-DEV.yml index f1c7e03a..35760ab0 100644 --- a/.github/workflows/deploy-DEV.yml +++ b/.github/workflows/deploy-DEV.yml @@ -38,7 +38,7 @@ jobs: # Checkout the code base # ########################## - name: Checkout Code - uses: actions/checkout@master + uses: actions/checkout@v2 ##################### # Run Deploy script #