Skip to content

Bump https://github.com/kjanat/actionlint from v1.15.1 to 1.17.0 - #983

Merged
merger-application[bot] merged 2 commits into
mainfrom
dependabot/pre_commit/https-/github.com/kjanat/actionlint-1.17.0
Sep 21, 2026
Merged

merger-application[bot] merged 2 commits into
mainfrom
dependabot/pre_commit/https-/github.com/kjanat/actionlint-1.17.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 21, 2026

Copy link
Copy Markdown
Contributor

Bumps https://github.com/kjanat/actionlint from v1.15.1 to 1.17.0.

Release notes

Sourced from https://github.com/kjanat/actionlint's releases.

v1.17.0

More of GitHub Actions understood. More mistakes caught before a workflow runs. actionlint 1.17.0 is a substantial release for this fork: explicit cache access controls, cache safety policies enabled by default, and a broad audit of workflow syntax, expressions, and local action manifests against GitHub's own schemas and runner code.

The schema work deserves equal billing. Valid expression-built matrices can now pass without spurious errors, newer workflow fields are understood, and malformed schedules and action metadata receive checks they previously escaped. Below are concrete examples of what changes when you upgrade, along with new installation options through the aqua registry and mise.

Upgrade note: the new policies can make previously clean workflows exit with status 1, including repositories without a configuration file. Existing opt-in policies retain their defaults.

Make cache access explicit

GitHub's cache-mode controls cache access independently of token permissions:

Mode Restore Save
read Yes No
write Yes Yes
write-only No Yes
none No No

Set it on the workflow or an individual job. Job settings override workflow settings; omission retains GitHub's trigger-dependent defaults. For example, give a reusable workflow a read-only ceiling:

on: pull_request_target
cache-mode: read
jobs:
report:
uses: ./.github/workflows/report.yml

actionlint follows nested local reusable calls and checks their explicit declarations against the caller's limit. Diagnostics preserve the original ./ or $/ reference. Missing or malformed callees are reported consistently regardless of file analysis order. (#163, #164)

Catch unsafe grants and ineffective cache steps

Three policies now run automatically:

  • cache-write-untrusted reports explicit write grants on low-trust triggers with access to default-branch caches, including pull_request_target, issue_comment, and workflow_run.
  • cache-call-unrestricted requires an explicit cache ceiling for reusable calls on those triggers.
  • cache-operation reports official actions/cache, actions/cache/save, and actions/cache/restore steps whose operations an explicit mode disables. Caller-imposed limits are followed through nested local workflows, including parallel child steps.

GitHub skips forbidden cache operations without failing the job. The operation check makes ineffective steps visible. The combined actions/cache action remains useful under read or write-only, where one operation is still available. Remote workflow bodies, wrappers, and package-manager caching options are not inspected. (#165)

For example, this job explicitly disables the operation its cache step requests:

jobs:
  build:
    runs-on: ubuntu-latest
    cache-mode: read
    steps:
      - uses: actions/cache/save@v4
</tr></table> 

... (truncated)

Changelog

Sourced from https://github.com/kjanat/actionlint's changelog.

v1.17.0 - 2026-09-13

  • kjanat/actionlint#167

  • kjanat/actionlint#168

  • Upgrade note: the three new cache safety policies are enabled even without a configuration file and can make previously clean workflows exit with status 1. Disable individual checks with policy.cache-write-untrusted: false, policy.cache-call-unrestricted: false, or policy.cache-operation: falsekjanat/actionlint#165

  • Support current workflow schema fields and expression objects, including workflow descriptions, cancellation timeouts, image-version filters, stacked pull requests, empty choice options, disabled service images, and UTC timezone aliases.

  • Validate action manifests against generated runner schema constraints. Correct workflow expression contexts, matrix inference, function arity, expression depth, scalar decoding, required flags, schedule entries, and step ID checks.

  • Document the pinned workflow/action schema audit, complete definition coverage, regression evidence, and retained compatibility differences.

  • Enable cache safety policies by default: report explicit writes on low-trust triggers that can use default-branch caches, reusable calls without an explicit cache limit on those triggers, and official cache actions disabled by an explicit mode. Each policy can be disabled in configuration or suppressed on a specific line with a rule name and a reason.

  • Add policy.disallow-suppressions to prohibit inline cache exceptions for all or selected rules. Select report: suppression, violation, or allkjanat/actionlint#165

  • Support workflow- and job-level cache-mode values, including jobs that call reusable workflows. Check explicit cache access limits through nested local workflow calls, preserving job overrides and the distinction between omitted settings and nonekjanat/actionlint#163

  • kjanat/actionlint#164kjanat/actionlint#165)

[Changes][v1.17.0]

v1.16.1 - 2026-09-09

  • Report YAML alias type errors at each invalid alias use, with the anchor location included in the message. Preserve source locations inside anchored content and avoid missing-ref errors for malformed useskjanat/actionlint#149kjanat/actionlint#154)

  • kjanat/actionlint#150

  • kjanat/actionlint#151NixOS/nixpkgs#561437; thanks @​voidlily for the initial packaging proposal.)

  • kjanat/actionlint#151

  • kjanat/actionlint#148

  • kjanat/actionlint#147

  • kjanat/actionlint#146rhysd/actionlint#651)

  • kjanat/actionlint#152

  • Give the release-failure test its own changelog so the full test suite passes after a version bump empties the real Unreleased section.

[Changes][v1.16.1]

... (truncated)

Commits
  • 08bb2c4 release: Prepare v1.17.0 distributions
  • 9098a85 Enforce cache safety policies by default with inline exceptions (#165)
  • 8991caa Support workflow and job cache access modes (#164)
  • 40ee367 funding: add sponsor badge
  • 231f09b Refresh the README demo for fork 1.16.1 and upstream 1.7.12 (#156)
  • 56c8ca1 Use nix profile add in installation docs
  • 662318d bump up version to v1.16.1
  • 10debd7 Complete the v1.16.1 changelog
  • 707c656 Report YAML alias errors at their use sites (#154)
  • a4dfe7e Share workflow setup and pin ShellCheck across runners (#152)
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file pre_commit Pull requests that update pre_commit code labels Sep 21, 2026
@coderabbitai

coderabbitai Bot commented Sep 21, 2026

Copy link
Copy Markdown

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

⚙️ Run configuration

Configuration used: Repository: dbfixtures/pytest-elasticsearch/.coderabbit.yaml

Review profile: ASSERTIVE

Plan: Advanced

Run ID: 91ce630e-4e30-46bc-ba5f-4a3675fe72f4

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

Use the checkbox below for a quick retry:

  • 🔍 Trigger review

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

dependabot Bot and others added 2 commits September 21, 2026 20:30
@fizyk
fizyk force-pushed the dependabot/pre_commit/https-/github.com/kjanat/actionlint-1.17.0 branch from 7156789 to 7e71aef Compare September 21, 2026 18:31
@codecov

codecov Bot commented Sep 21, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.

📢 Thoughts on this report? Let us know!

@merger-application
merger-application Bot merged commit 2775d33 into main Sep 21, 2026
118 of 122 checks passed
@merger-application
merger-application Bot deleted the dependabot/pre_commit/https-/github.com/kjanat/actionlint-1.17.0 branch September 21, 2026 19:46
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file pre_commit Pull requests that update pre_commit code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant