From c1d27774b4d7396ca7ca5eb3ccd4c38d4fc0ad12 Mon Sep 17 00:00:00 2001 From: WSLUser <33032910+WSLUser@users.noreply.github.com> Date: Mon, 19 Oct 2020 20:08:37 +0000 Subject: [PATCH] Update GH Action Super-Linter and README (#7951) Updates the GH Action and makes a small update to the README to test changes. A missing install step for Windows Terminal using Scoop has been added. The versioning of Super-Linter was also switched to v3 to allow auto-updates within the v3 series. This can be version-pinned again if a breaking change comes later. The current updates fix some bugs and bump the linters utilized. ## Validation Steps Performed Validation will be shown in the build steps. Closes #7934 --- .github/workflows/linter.yml | 7 +++++-- README.md | 1 + 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index bddaefe5c..80ce00b22 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -37,12 +37,15 @@ jobs: ########################## - name: Checkout Code uses: actions/checkout@v2 - + with: + # Full git history is needed to get a proper list of changed files within `super-linter` + fetch-depth: 0 + ################################ # Run Linter against code base # ################################ - name: Lint Code Base - uses: github/super-linter@v3.10.0 + uses: github/super-linter@v3 env: VALIDATE_ALL_CODEBASE: false DEFAULT_BRANCH: master diff --git a/README.md b/README.md index f61708972..450f83280 100644 --- a/README.md +++ b/README.md @@ -79,6 +79,7 @@ page](https://chocolatey.org/packages/microsoft-windows-terminal) and follow the release by installing the `windows-terminal` package: ```powershell +scoop bucket add extras scoop install windows-terminal ```