diff options
author | Frantisek Sumsal <frantisek@sumsal.cz> | 2022-05-21 17:34:34 +0200 |
---|---|---|
committer | Frantisek Sumsal <frantisek@sumsal.cz> | 2022-05-21 23:28:18 +0200 |
commit | 6c0259e50203a9a8851cd4bc6f8e8f8f21361049 (patch) | |
tree | 5bbdf7df66e1a307986e3ce96b04a1c4bbf6df4f /.github/workflows/linter.yml | |
parent | cryptsetup: fix build with -Db_ndebug=true (diff) | |
download | systemd-6c0259e50203a9a8851cd4bc6f8e8f8f21361049.tar.xz systemd-6c0259e50203a9a8851cd4bc6f8e8f8f21361049.zip |
ci: temporarily disable validation of GH Action files
since the current version of super-linter doesn't recognize
ubuntu-22.04 as a valid runner specification. This should
be fixed once https://github.com/github/super-linter/pull/2897
is merged, which includes
https://github.com/rhysd/actionlint/commit/09a60b0f5761c2d066def294e541c25a89756eea
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/linter.yml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index ecdd7970d2..1ba9236425 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -41,4 +41,10 @@ jobs: FILTER_REGEX_EXCLUDE: .*/(man/.*|.*\.(in|SKELETON)|tools/coverity\.sh)$ VALIDATE_ALL_CODEBASE: false VALIDATE_BASH: true - VALIDATE_GITHUB_ACTIONS: true + # FIXME: temporarily disable validation of GH Action files, since + # the current version of super-linter doesn't recognize + # ubuntu-22.04 as a valid runner specification. This should + # be fixed once https://github.com/github/super-linter/pull/2897 + # is merged, which includes + # https://github.com/rhysd/actionlint/commit/09a60b0f5761c2d066def294e541c25a89756eea + #VALIDATE_GITHUB_ACTIONS: true |