diff --git a/CHANGELOG.md b/CHANGELOG.md index 1cf0e4753fc..c863db4108f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -53,6 +53,7 @@ Note: Can be used with `oxsecurity/megalinter@beta` in your GitHub Action mega-l - [terraform-fmt](https://www.terraform.io/docs/cli/commands/fmt.html) from 1.3.7 to **1.3.8** on 2023-02-11 - [spectral](https://meta.stoplight.io/docs/spectral/README.md) from 6.5.0 to **6.6.0** on 2023-02-11 - [terrascan](https://www.accurics.com/products/terrascan/) from 1.16.0 to **1.18.0** on 2023-02-11 + - [editorconfig-checker](https://editorconfig-checker.github.io/) from 2.4.0 to **2.7.0** on 2022-02-11 - [cspell](https://github.com/streetsidesoftware/cspell/tree/master/packages/cspell) from 6.22.0 to **6.23.0** on 2023-02-11 diff --git a/Dockerfile b/Dockerfile index aa725f74c52..4e83c00986d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ FROM mvdan/shfmt:latest-alpine as shfmt FROM cljkondo/clj-kondo:2023.01.20-alpine as clj-kondo FROM hadolint/hadolint:v2.12.0-alpine as hadolint -FROM mstruebing/editorconfig-checker:2.4.0 as editorconfig-checker +FROM mstruebing/editorconfig-checker:2.7.0 as editorconfig-checker FROM ghcr.io/assignuser/chktex-alpine:latest as chktex FROM yoheimuta/protolint:latest as protolint FROM zricethezav/gitleaks:v8.15.3 as gitleaks diff --git a/docs/descriptors/editorconfig_editorconfig_checker.md b/docs/descriptors/editorconfig_editorconfig_checker.md index 45d86f27571..1f6d9f32906 100644 --- a/docs/descriptors/editorconfig_editorconfig_checker.md +++ b/docs/descriptors/editorconfig_editorconfig_checker.md @@ -15,7 +15,7 @@ description: How to use editorconfig-checker (configure, ignore files, ignore er ## editorconfig-checker documentation -- Version in MegaLinter: **2.4.0** +- Version in MegaLinter: **2.7.0** - Visit [Official Web Site](https://editorconfig-checker.github.io/){target=_blank} - See [How to configure editorconfig-checker rules](https://github.com/editorconfig-checker/editorconfig-checker#configuration){target=_blank} - See [How to disable editorconfig-checker rules in files](https://github.com/editorconfig-checker/editorconfig-checker#excluding){target=_blank} @@ -127,7 +127,6 @@ USAGE: - Dockerfile commands : ```dockerfile -FROM mstruebing/editorconfig-checker:2.4.0 as editorconfig-checker +FROM mstruebing/editorconfig-checker:2.7.0 as editorconfig-checker COPY --from=editorconfig-checker /usr/bin/ec /usr/bin/editorconfig-checker ``` - diff --git a/flavors/cupcake/Dockerfile b/flavors/cupcake/Dockerfile index 90e08a4dc0b..c789828bcdf 100644 --- a/flavors/cupcake/Dockerfile +++ b/flavors/cupcake/Dockerfile @@ -14,7 +14,7 @@ FROM mvdan/shfmt:latest-alpine as shfmt FROM cljkondo/clj-kondo:2023.01.20-alpine as clj-kondo FROM hadolint/hadolint:v2.12.0-alpine as hadolint -FROM mstruebing/editorconfig-checker:2.4.0 as editorconfig-checker +FROM mstruebing/editorconfig-checker:2.7.0 as editorconfig-checker FROM zricethezav/gitleaks:v8.15.3 as gitleaks FROM ghcr.io/terraform-linters/tflint:v0.44.1 as tflint FROM tenable/terrascan:1.18.0 as terrascan diff --git a/flavors/documentation/Dockerfile b/flavors/documentation/Dockerfile index d801d852cd0..0564faad937 100644 --- a/flavors/documentation/Dockerfile +++ b/flavors/documentation/Dockerfile @@ -13,7 +13,7 @@ #FROM__START FROM mvdan/shfmt:latest-alpine as shfmt FROM hadolint/hadolint:v2.12.0-alpine as hadolint -FROM mstruebing/editorconfig-checker:2.4.0 as editorconfig-checker +FROM mstruebing/editorconfig-checker:2.7.0 as editorconfig-checker FROM yoheimuta/protolint:latest as protolint FROM zricethezav/gitleaks:v8.15.3 as gitleaks #FROM__END diff --git a/flavors/dotnet/Dockerfile b/flavors/dotnet/Dockerfile index 343060a0997..d5bf2bf2bc6 100644 --- a/flavors/dotnet/Dockerfile +++ b/flavors/dotnet/Dockerfile @@ -13,7 +13,7 @@ #FROM__START FROM mvdan/shfmt:latest-alpine as shfmt FROM hadolint/hadolint:v2.12.0-alpine as hadolint -FROM mstruebing/editorconfig-checker:2.4.0 as editorconfig-checker +FROM mstruebing/editorconfig-checker:2.7.0 as editorconfig-checker FROM yoheimuta/protolint:latest as protolint FROM zricethezav/gitleaks:v8.15.3 as gitleaks #FROM__END diff --git a/flavors/go/Dockerfile b/flavors/go/Dockerfile index a7a31af9a05..dc571d73cb3 100644 --- a/flavors/go/Dockerfile +++ b/flavors/go/Dockerfile @@ -13,7 +13,7 @@ #FROM__START FROM mvdan/shfmt:latest-alpine as shfmt FROM hadolint/hadolint:v2.12.0-alpine as hadolint -FROM mstruebing/editorconfig-checker:2.4.0 as editorconfig-checker +FROM mstruebing/editorconfig-checker:2.7.0 as editorconfig-checker FROM yoheimuta/protolint:latest as protolint FROM zricethezav/gitleaks:v8.15.3 as gitleaks #FROM__END diff --git a/flavors/java/Dockerfile b/flavors/java/Dockerfile index 22fb9696c09..1155765db7a 100644 --- a/flavors/java/Dockerfile +++ b/flavors/java/Dockerfile @@ -14,7 +14,7 @@ FROM mvdan/shfmt:latest-alpine as shfmt FROM cljkondo/clj-kondo:2023.01.20-alpine as clj-kondo FROM hadolint/hadolint:v2.12.0-alpine as hadolint -FROM mstruebing/editorconfig-checker:2.4.0 as editorconfig-checker +FROM mstruebing/editorconfig-checker:2.7.0 as editorconfig-checker FROM yoheimuta/protolint:latest as protolint FROM zricethezav/gitleaks:v8.15.3 as gitleaks #FROM__END diff --git a/flavors/javascript/Dockerfile b/flavors/javascript/Dockerfile index 3a886666d6e..65f73241351 100644 --- a/flavors/javascript/Dockerfile +++ b/flavors/javascript/Dockerfile @@ -13,7 +13,7 @@ #FROM__START FROM mvdan/shfmt:latest-alpine as shfmt FROM hadolint/hadolint:v2.12.0-alpine as hadolint -FROM mstruebing/editorconfig-checker:2.4.0 as editorconfig-checker +FROM mstruebing/editorconfig-checker:2.7.0 as editorconfig-checker FROM yoheimuta/protolint:latest as protolint FROM zricethezav/gitleaks:v8.15.3 as gitleaks #FROM__END diff --git a/flavors/php/Dockerfile b/flavors/php/Dockerfile index 520f0c96300..a3fefe490a8 100644 --- a/flavors/php/Dockerfile +++ b/flavors/php/Dockerfile @@ -13,7 +13,7 @@ #FROM__START FROM mvdan/shfmt:latest-alpine as shfmt FROM hadolint/hadolint:v2.12.0-alpine as hadolint -FROM mstruebing/editorconfig-checker:2.4.0 as editorconfig-checker +FROM mstruebing/editorconfig-checker:2.7.0 as editorconfig-checker FROM yoheimuta/protolint:latest as protolint FROM zricethezav/gitleaks:v8.15.3 as gitleaks #FROM__END diff --git a/flavors/python/Dockerfile b/flavors/python/Dockerfile index 4a533513618..39496ac9d3a 100644 --- a/flavors/python/Dockerfile +++ b/flavors/python/Dockerfile @@ -13,7 +13,7 @@ #FROM__START FROM mvdan/shfmt:latest-alpine as shfmt FROM hadolint/hadolint:v2.12.0-alpine as hadolint -FROM mstruebing/editorconfig-checker:2.4.0 as editorconfig-checker +FROM mstruebing/editorconfig-checker:2.7.0 as editorconfig-checker FROM yoheimuta/protolint:latest as protolint FROM zricethezav/gitleaks:v8.15.3 as gitleaks #FROM__END diff --git a/flavors/ruby/Dockerfile b/flavors/ruby/Dockerfile index b50d8c7843a..c0971f60159 100644 --- a/flavors/ruby/Dockerfile +++ b/flavors/ruby/Dockerfile @@ -13,7 +13,7 @@ #FROM__START FROM mvdan/shfmt:latest-alpine as shfmt FROM hadolint/hadolint:v2.12.0-alpine as hadolint -FROM mstruebing/editorconfig-checker:2.4.0 as editorconfig-checker +FROM mstruebing/editorconfig-checker:2.7.0 as editorconfig-checker FROM yoheimuta/protolint:latest as protolint FROM zricethezav/gitleaks:v8.15.3 as gitleaks #FROM__END diff --git a/flavors/rust/Dockerfile b/flavors/rust/Dockerfile index 4ec25c4e35f..f32e04588cb 100644 --- a/flavors/rust/Dockerfile +++ b/flavors/rust/Dockerfile @@ -13,7 +13,7 @@ #FROM__START FROM mvdan/shfmt:latest-alpine as shfmt FROM hadolint/hadolint:v2.12.0-alpine as hadolint -FROM mstruebing/editorconfig-checker:2.4.0 as editorconfig-checker +FROM mstruebing/editorconfig-checker:2.7.0 as editorconfig-checker FROM yoheimuta/protolint:latest as protolint FROM zricethezav/gitleaks:v8.15.3 as gitleaks #FROM__END diff --git a/flavors/salesforce/Dockerfile b/flavors/salesforce/Dockerfile index 4ba3e586e86..a8aa54f0682 100644 --- a/flavors/salesforce/Dockerfile +++ b/flavors/salesforce/Dockerfile @@ -13,7 +13,7 @@ #FROM__START FROM mvdan/shfmt:latest-alpine as shfmt FROM hadolint/hadolint:v2.12.0-alpine as hadolint -FROM mstruebing/editorconfig-checker:2.4.0 as editorconfig-checker +FROM mstruebing/editorconfig-checker:2.7.0 as editorconfig-checker FROM yoheimuta/protolint:latest as protolint FROM zricethezav/gitleaks:v8.15.3 as gitleaks #FROM__END diff --git a/flavors/swift/Dockerfile b/flavors/swift/Dockerfile index 88b78e7bf25..e9c4092aae1 100644 --- a/flavors/swift/Dockerfile +++ b/flavors/swift/Dockerfile @@ -13,7 +13,7 @@ #FROM__START FROM mvdan/shfmt:latest-alpine as shfmt FROM hadolint/hadolint:v2.12.0-alpine as hadolint -FROM mstruebing/editorconfig-checker:2.4.0 as editorconfig-checker +FROM mstruebing/editorconfig-checker:2.7.0 as editorconfig-checker FROM yoheimuta/protolint:latest as protolint FROM zricethezav/gitleaks:v8.15.3 as gitleaks #FROM__END diff --git a/flavors/terraform/Dockerfile b/flavors/terraform/Dockerfile index 8afa1ba158d..c970d73cb02 100644 --- a/flavors/terraform/Dockerfile +++ b/flavors/terraform/Dockerfile @@ -13,7 +13,7 @@ #FROM__START FROM mvdan/shfmt:latest-alpine as shfmt FROM hadolint/hadolint:v2.12.0-alpine as hadolint -FROM mstruebing/editorconfig-checker:2.4.0 as editorconfig-checker +FROM mstruebing/editorconfig-checker:2.7.0 as editorconfig-checker FROM yoheimuta/protolint:latest as protolint FROM zricethezav/gitleaks:v8.15.3 as gitleaks FROM ghcr.io/terraform-linters/tflint:v0.44.1 as tflint diff --git a/megalinter/descriptors/editorconfig.megalinter-descriptor.yml b/megalinter/descriptors/editorconfig.megalinter-descriptor.yml index b3cf4d633e3..32b88b49766 100644 --- a/megalinter/descriptors/editorconfig.megalinter-descriptor.yml +++ b/megalinter/descriptors/editorconfig.megalinter-descriptor.yml @@ -25,5 +25,5 @@ linters: - "editorconfig-checker myfile.js" install: dockerfile: - - FROM mstruebing/editorconfig-checker:2.4.0 as editorconfig-checker + - FROM mstruebing/editorconfig-checker:2.7.0 as editorconfig-checker - COPY --from=editorconfig-checker /usr/bin/ec /usr/bin/editorconfig-checker