From 3eccc6c9d3f551d2fd8dfe950c8b3ad0fa923a11 Mon Sep 17 00:00:00 2001
From: groundhog2k <10630407+groundhog2k@users.noreply.github.com>
Date: Fri, 30 Oct 2020 19:08:59 +0100
Subject: [PATCH] Update release.yaml (#25)

* Update release.yaml

* Update verify.yml
---
 .github/workflows/release.yaml | 8 +++++---
 .github/workflows/verify.yml   | 6 ++++--
 2 files changed, 9 insertions(+), 5 deletions(-)

diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml
index 1722e12e..4c01654f 100644
--- a/.github/workflows/release.yaml
+++ b/.github/workflows/release.yaml
@@ -12,12 +12,14 @@ jobs:
     runs-on: ubuntu-latest
     steps:
       - name: Checkout
-        uses: actions/checkout@v1
-      - name: Set git config
+        uses: actions/checkout@v2
+        with:
+          fetch-depth: 0
+      - name: Configure Git
         run: |
           git config user.name "$GITHUB_ACTOR"
           git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
       - name: Run Release
-        uses: helm/chart-releaser-action@master
+        uses: helm/chart-releaser-action@v1.0.0
         env:
           CR_TOKEN: '${{ secrets.GITHUB_TOKEN }}'
diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml
index 151dfcb0..f6d9f406 100644
--- a/.github/workflows/verify.yml
+++ b/.github/workflows/verify.yml
@@ -11,9 +11,11 @@ jobs:
     runs-on: ubuntu-latest
     steps:
       - name: Checkout
-        uses: actions/checkout@v1
+        uses: actions/checkout@v2
+      - name: Fetch history
+        run: git fetch --prune --unshallow        
       - name: Run lint
-        uses: helm/chart-testing-action@master
+        uses: helm/chart-testing-action@v1.2.0
         with:
           command: lint
           config: .github/verify-config.yaml
-- 
GitLab