From a02b4166a8c373e00541d23bb02563ee2a5a3ef3 Mon Sep 17 00:00:00 2001 From: John Bampton Date: Tue, 12 Mar 2024 11:08:10 +1000 Subject: [PATCH] super-linter: set `VALIDATE_GITHUB_ACTIONS` to `true` refs https://github.com/mruby/mruby/pull/6180 --- .github/workflows/lint.yml | 2 +- .github/workflows/super-linter.yml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 20ef889..8cdd181 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -28,7 +28,7 @@ jobs: python -m pip install --upgrade pip pip install pre-commit - name: Set PY - run: echo "PY=$(python -VV | sha256sum | cut -d' ' -f1)" >> $GITHUB_ENV + run: echo "PY=$(python -VV | sha256sum | cut -d' ' -f1)" >> "$GITHUB_ENV" - uses: actions/cache@v4 with: path: ~/.cache/pre-commit diff --git a/.github/workflows/super-linter.yml b/.github/workflows/super-linter.yml index d2590f1..cea1f18 100644 --- a/.github/workflows/super-linter.yml +++ b/.github/workflows/super-linter.yml @@ -16,6 +16,7 @@ jobs: uses: super-linter/super-linter/slim@v6.3.0 env: VALIDATE_EDITORCONFIG: true + VALIDATE_GITHUB_ACTIONS: true VALIDATE_GITLEAKS: true DEFAULT_BRANCH: master GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}