From e694ba2e3c526c4850cfd7f079c285bfeed571bd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 29 Sep 2021 20:17:49 +0100 Subject: [PATCH] Bump github/super-linter from 4.7.3 to 4.8.0 (#2350) * Bump github/super-linter from 4.7.3 to 4.8.0 Bumps [github/super-linter](https://github.com/github/super-linter) from 4.7.3 to 4.8.0. - [Release notes](https://github.com/github/super-linter/releases) - [Changelog](https://github.com/github/super-linter/blob/master/docs/release-process.md) - [Commits](https://github.com/github/super-linter/compare/v4.7.3...v4.8.0) --- updated-dependencies: - dependency-name: github/super-linter dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] * Fix queries failing linting Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Barry --- .github/workflows/linter.yml | 2 +- .github/workflows/test_website.yml | 2 +- sql/2021/caching/header_trends.sql | 4 ++-- sql/2021/caching/top_hosts_using_immutable.sql | 3 +-- 4 files changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index 837de84efcc..211550e4d37 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -28,7 +28,7 @@ jobs: run: | echo "VALIDATE_ALL_CODEBASE=false" >> $GITHUB_ENV - name: Lint Code Base - uses: github/super-linter@v4.7.3 + uses: github/super-linter@v4.8.0 #uses: docker://github/super-linter:v4.7.1 env: DEFAULT_BRANCH: main diff --git a/.github/workflows/test_website.yml b/.github/workflows/test_website.yml index b8214822db3..f0b03c74f4c 100644 --- a/.github/workflows/test_website.yml +++ b/.github/workflows/test_website.yml @@ -37,7 +37,7 @@ jobs: - name: Use more complete checks for generated HTML linting run: cp -f .github/linters/.htmlhintrc_morechecks .github/linters/.htmlhintrc - name: Lint Generated HTML - uses: github/super-linter@v4.7.3 + uses: github/super-linter@v4.8.0 env: DEFAULT_BRANCH: main FILTER_REGEX_INCLUDE: src/static/html/.* diff --git a/sql/2021/caching/header_trends.sql b/sql/2021/caching/header_trends.sql index a5c95426a69..9e85bcc1d64 100644 --- a/sql/2021/caching/header_trends.sql +++ b/sql/2021/caching/header_trends.sql @@ -7,14 +7,14 @@ WITH summary_requests AS ( * FROM `httparchive.summary_requests.2019_07_01_*` -UNION ALL + UNION ALL SELECT '2020' AS year, _TABLE_SUFFIX AS client, * FROM `httparchive.summary_requests.2020_08_01_*` -UNION ALL + UNION ALL SELECT '2021' AS year, _TABLE_SUFFIX AS client, diff --git a/sql/2021/caching/top_hosts_using_immutable.sql b/sql/2021/caching/top_hosts_using_immutable.sql index 246b3944ea4..4ff23637a1d 100644 --- a/sql/2021/caching/top_hosts_using_immutable.sql +++ b/sql/2021/caching/top_hosts_using_immutable.sql @@ -18,5 +18,4 @@ GROUP BY ORDER BY client, pct_requests DESC -LIMIT - 200 +LIMIT 200