From b991d14e186d236d61e9127d51388316e53d6842 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 7 Sep 2026 08:11:04 +0000 Subject: [PATCH 1/2] chore(deps): bump rubykatzen/baseline/.github/workflows/lint-shared.yml Bumps [rubykatzen/baseline/.github/workflows/lint-shared.yml](https://github.com/rubykatzen/baseline) from 0.7.8 to 0.18.1. - [Release notes](https://github.com/rubykatzen/baseline/releases) - [Changelog](https://github.com/rubykatzen/baseline/blob/main/CHANGELOG.md) - [Commits](https://github.com/rubykatzen/baseline/compare/v0.7.8...v0.18.1) --- updated-dependencies: - dependency-name: rubykatzen/baseline/.github/workflows/lint-shared.yml dependency-version: 0.18.1 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/lint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index e6e14b8..0bf0d2a 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -5,6 +5,6 @@ on: pull_request: jobs: lint: - uses: rubykatzen/baseline/.github/workflows/lint-shared.yml@v0.7.8 + uses: rubykatzen/baseline/.github/workflows/lint-shared.yml@v0.18.1 with: linters: yamllint, pymarkdown, ruff, actionlint, pre-commit From 0f8dd0193e26f98424c9bcbd8e48b8b689eb1ce3 Mon Sep 17 00:00:00 2001 From: Yuriy Kirillov Date: Sat, 12 Sep 2026 22:24:58 +0200 Subject: [PATCH 2/2] fix: drop linters input, no longer accepted by lint-shared.yml lint-shared.yml@v0.18.1 replaced the explicit linters input with automatic detection (detect-linters, gated by an optional skip list). Passing linters would fail the reusable-workflow call outright since it's no longer a declared input. Auto-detection selects the same set we listed (yamllint, pymarkdown, ruff, actionlint, pre-commit) based on tracked files, so behavior is unchanged. Co-Authored-By: Claude Sonnet 5 --- .github/workflows/lint.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 0bf0d2a..294b7c3 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -6,5 +6,3 @@ on: jobs: lint: uses: rubykatzen/baseline/.github/workflows/lint-shared.yml@v0.18.1 - with: - linters: yamllint, pymarkdown, ruff, actionlint, pre-commit