From 0744055595da9908dff217b26640f8db016ec764 Mon Sep 17 00:00:00 2001 From: Ahmad Nassri Date: Mon, 17 Aug 2020 12:55:11 -0400 Subject: [PATCH] docs: remove note about using docker:// it seems GitHub Actions now respects `actions.yml` directives when using docker actions, thus making this note redundant --- README.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/README.md b/README.md index b93a2acb..b2c4d095 100644 --- a/README.md +++ b/README.md @@ -148,16 +148,13 @@ jobs: # Run Linter against code base # ################################ - name: Lint Code Base - uses: docker://github/super-linter:v3 + uses: github/super-linter@v3 env: VALIDATE_ALL_CODEBASE: false DEFAULT_BRANCH: master GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} ``` -**NOTE:** -Using the line:`uses: docker://github/super-linter:v3` will pull the image down from **DockerHub** and run the **GitHub Super-Linter**. Using the line: `uses: github/super-linter@v3` will build and compile the **GitHub Super-Linter** at build time. _This can be far more costly in time..._ - ## Environment variables The super-linter allows you to pass the following `ENV` variables to be able to trigger different functionality.