diff --git a/.github/super-linter.env b/.github/super-linter.env index 11836d2..6ebe3af 100644 --- a/.github/super-linter.env +++ b/.github/super-linter.env @@ -5,5 +5,6 @@ MARKDOWN_CONFIG_FILE=markdown-lint.yaml SUPPRESS_POSSUM=true VALIDATE_ALL_CODEBASE=true VALIDATE_GITLEAKS=false -VALIDATE_GO=false -VALIDATE_JSCPD=false +VALIDATE_JSON_PRETTIER=false +VALIDATE_MARKDOWN_PRETTIER=false +VALIDATE_YAML_PRETTIER=false diff --git a/CHANGELOG.md b/CHANGELOG.md index 0e82f6f..39a9dde 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,13 @@ Categories, defined in [changemap.json](.github/clq/changemap.json)): - `Fixed` for any bugfixes. - `Security` in case of vulnerabilities. +## [1.0.8] - 2024-08-20 + +### Fixed + +- Bump `super-linter/super-linter` from 6 to 7 +- Disable `prettier`, its opinion differs too much + ## [1.0.7] - 2024-08-15 ### Fixed diff --git a/Makefile b/Makefile index bcd622c..4421e99 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,12 @@ .PHONY: superlinter superlinter: docker run --rm \ + --platform linux/amd64 \ -e RUN_LOCAL=true \ + -e SHELL=/bin/bash \ --env-file ".github/super-linter.env" \ -w /tmp/lint -v "$(CURDIR):/tmp/lint" \ - github/super-linter:v5 + ghcr.io/super-linter/super-linter:v7 .PHONY: shellcheck shellcheck: diff --git a/README.md b/README.md index a73ff83..3dc79cb 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ ## Summary -GitHub action to help set a semantic tag, keeping major and minor tags current. +GitHub Action to help set a semantic tag, keeping major and minor tags current. This action is inspired by GitHub: "We recommend creating releases using semantically versioned tags – for example, v1.1.3 –