Skip to content

GitHub Actions

Categories: ci

Renovate supports updating GitHub Actions dependencies.

File Matching

By default, Renovate will check any files matching any of the following regular expressions:

/(^|/)(workflow-templates|\.(?:github|gitea|forgejo)/(?:workflows|actions))/.+\.ya?ml$/
/(^|/)action\.ya?ml$/

For details on how to extend a manager's managerFilePatterns value, please follow this link.

Supported datasources

This manager supports extracting the following datasources: gitea-tags, github-digest, github-runners, github-tags, rust-version.

Dependency types

This manager extracts the following depType values:

depType Description
action A repository-based action reference in a uses: field (e.g. actions/checkout@v4)
docker A Docker image reference in a uses: field (e.g. uses: docker://alpine:3)
container A Docker image specified in a job's container: field
service A Docker image specified in a job's services: field
github-runner A GitHub-hosted runner version in a runs-on: field (e.g. ubuntu-24.04)
uses-with A language/runtime version passed as an input to a versioned action (e.g. node-version for actions/setup-node)

Default config

{
  "managerFilePatterns": [
    "/(^|/)(workflow-templates|\\.(?:github|gitea|forgejo)/(?:workflows|actions))/.+\\.ya?ml$/",
    "/(^|/)action\\.ya?ml$/"
  ]
}

Additional Information

The github-actions manager extracts dependencies from GitHub Actions workflow and workflow template files. It can also be used for Gitea and Forgejo Actions workflows as such are compatible with GitHub Actions workflows.

Digest pinning and updating

If you like to use digest pinning but want to follow the action version tag, you can use the sample below:

name: build

on: [push]

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0

Renovate will update the commit SHA according to the GitHub tag you specified. Renovate can update digests that use SHA1 and SHA256 algorithms. The GitHub tag is in the format of <PREFIX><SEPARATOR><VERSION>. PREFIX and SEPARATOR are optional. Valid separators are the ASCII hyphen (-) or forward slash (/). VERSION can include the major, minor, and patch components and may optionally include a v prefix. Here are the examples of valid GitHub tags: 1.0.1, 1.0, 1, v1.0.1, v1.0, v1, prefix-1.0.1, prefix-1.0, prefix-1, prefix-v1.0.1, prefix-v1.0, prefix-v1. prefix/1.0.1, prefix/1.0, prefix/1, prefix/v1.0.1, prefix/v1.0, prefix/v1.

If you want to automatically pin action digests add the helpers:pinGitHubActionDigests preset to the extends array:

{
  "extends": ["helpers:pinGitHubActionDigests"]
}

Actions pinned to a bare SHA without a version comment are disabled by default, because Renovate cannot determine which branch or tag the SHA belongs to. To enable updates, add a tag or branch name as a version comment, as shown above.

GitHub Actions lockfile (actions.lock)

This feature is flagged as experimental

Experimental features might be changed at any time.

Due to GitHub classing this functionality as a "public preview", there may be changes to Renovate's functionality - in a possibly breaking manner - while GitHub work to stabilise the feature.

Renovate keeps the GitHub Actions dependency lockfile in sync. The lockfile is an alternative to inline digest pinning: your workflows keep readable tags like actions/checkout@v4.3.1, and .github/workflows/actions.lock records the commit each tag resolved to.

If the repository has a .github/workflows/actions.lock, then Renovate regenerates it whenever it updates an action. Renovate installs the gh-actions-lock extension for the gh CLI, and runs gh actions-lock once per branch, from the repository root, after writing every updated workflow:

gh extension install github/gh-actions-lock --pin <version> --force
gh actions-lock --no-interactive --no-narrow --no-migrate-local-actions

Renovate opts out of two rewrites that gh actions-lock performs by default, as both would change more than the dependency being updated: narrowing a ref like @v4 to @v4.2.1, which would contradict the version in the pull request and defeat a deliberately floating major tag, and migrating same-repo uses: ./… references to the uses: $/… form.

You do not need to configure anything: if there's no actions.lock file, then there's nothing to update. Workflows which are not onboarded to the lockfile are skipped. Local composite actions are still regenerated, as they can be transitive dependencies of a workflow which is onboarded.

Note

The lockfile is an alternative to inline digest pinning: your workflows keep readable tags like actions/checkout@v4.3.1, and .github/workflows/actions.lock records the commit each tag resolved to.

When updating the lockfile, gh actions-lock replaces digest pinned GitHub Actions to the version reference:

-uses: actions/setup-java@1bcf9fb12cf4aa7d266a90ae39939e61372fe520 # v5.4.0
+uses: actions/setup-java@v5.7.0

Digests that are already pinned will be updated by Renovate, until they are removed by gh actions-lock.

This does not apply if your organization or repository enables the Require actions to be pinned to a full-length commit SHA policy, found in your Actions settings. If this is enabled, gh actions-lock leaves the digests in place, so your workflows stay digest pinned and Renovate carries on updating them.

Renovate pins the version of the actions-lock extension to provide deterministic updates, which is then bumped in a later Renovate release.

To use a different version, set the ghActionsLock constraint:

{
  "constraints": {
    "ghActionsLock": "v0.1.7"
  }
}

The version must be a full release tag, like v0.1.7.

Because constraints is mergeable, setting "constraints": {} does not remove the pin: set the value to an empty string to always install the latest extension.

{
  "constraints": {
    "ghActionsLock": ""
  }
}

You can also control the gh CLI version using constraints.gh.

Note

With binarySource=global, Renovate does not install or re-pin the extension, as Renovate uses the tools installed by your administrator's deployment.

Both gh and the gh-actions-lock extension must already be available, and specifying ghActionsLock and gh in your repository's constraints will be ignored.

Pin the extension when you provision your image:

gh extension install github/gh-actions-lock --pin v0.1.6

Note

gh actions-lock resolves refs and repository IDs through the GitHub API, so it needs a token. Renovate takes the token from the github host rule matching your platform endpoint, and passes it as GH_TOKEN. On GitHub Enterprise Server Renovate passes that token using GH_ENTERPRISE_TOKEN and GH_HOST, and additionally passes the token from your github.com host rule as GH_TOKEN, because public actions are still resolved against github.com.

Non-semver refs (branches and feature tags)

Renovate supports GitHub Actions that reference non-semver refs like branch names (main, master) or feature-oriented tags (cargo-llvm-cov).

When the action reference doesn't look like a version number (i.e., doesn't match /^v?\d+/), Renovate routes to the github-digest datasource which fetches both tags and branches. Since these refs have no version ordering, only digest pinning updates are supported.

Routing logic:

  • actions/checkout@v4.2.0github-tags datasource (version updates)
  • actions/checkout@v4github-tags datasource (version updates)
  • taiki-e/install-action@cargo-llvm-covgithub-digest datasource (digest pinning only)
  • actions/checkout@maingithub-digest datasource (digest pinning only)

When pinning, Renovate adds a comment to preserve the original ref:

- uses: taiki-e/install-action@d8c10dae823f48238abff23fee4146b448aed2f1 # cargo-llvm-cov

Non-semver ref support is currently limited to GitHub-hosted actions. Gitea and Forgejo support the same ref types, but Renovate does not yet handle them for these platforms.

Steps nested in parallel: blocks

Renovate extracts dependencies from steps nested inside a parallel: block, just as it does for regular sequential steps. This includes both the action reference itself and any supported with: version inputs.

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - parallel:
          - uses: actions/setup-node@v5
            with:
              node-version: '20.0.0'
          - uses: actions/setup-go@v5
            with:
              go-version: '1.23'

Non-support of Variables

Renovate ignores any GitHub runners which are configured in variables. For example, Renovate ignores the runner configured in the RUNNER variable:

name: build
on: [push]

env:
  RUNNER: ubuntu-22.04

jobs:
  build:
    runs-on: ${{ env.RUNNER }}

Ratchet support

The github-action manager understands ratchet comments, like # ratchet:actions/checkout@v2.1.0. This means that Renovate will:

  • update the version of a pinned Ratchet version if needed
  • not delete Ratchet comments after parsing them
  • keep # ratchet:exclude comments

with:version support for built-in Actions

Renovate supports updating the "with" version for actions/setup-go, actions/setup-node, and actions/setup-python, although not all syntaxes are supported out of the box.

By default, Renovate will use npm-style semver versioning for go and python, and Renovate's built-in node versioning for updating node. The goal of these defaults is to match as closely as possible to what these GitHub Actions support. For example, normally the ^ syntax is not used in go or python, but it's supported in their respective actions.

Depending on your use case, you may need to change versioning manually. If you find a use case which you think Renovate could/should automatically detect and support without manual configuration, please raise a Discussion to suggest it.

Updating with: values in commonly used Community-maintained GitHub Actions

Third-party GitHub Actions will commonly specify a version of a given tool using a with: block, such as:

GitHub Actions maintained by the wider community have with: blocks such as:

steps:
- uses: astral-sh/setup-uv@v9.0.0
  with:
    version: '0.4.x'

- uses: 'denoland/setup-deno@v2',
  with:
    deno-version: '2.4.0'

Renovate supports extracting some of these input(s) from the following Actions, and performing automagic dependency updates accordingly.

A single step can yield more than one dependency. For example, pnpm/setup declares both the pnpm version and the JavaScript runtime to install:

steps:
  - uses: pnpm/setup@v1
    with:
      version: '12.0.0'
      runtime: 'node@24.1.0'

The following third-party Actions have support for their with: blocks:

Action with input(s) used Dependency
aquasecurity/setup-trivy version aquasecurity/trivy
aquasecurity/trivy-action version aquasecurity/trivy
astral-sh/setup-uv version astral-sh/uv
azure/setup-helm version helm
denoland/setup-deno deno-version deno
docker/setup-buildx-action version buildx
docker/setup-compose-action version docker/compose
docker/setup-docker-action version docker
dtolnay/rust-toolchain toolchain rust
golangci/golangci-lint-action version golangci/golangci-lint
helm/chart-testing-action version chart-testing
jakebailey/pyright-action version pyright
jaxxstorm/action-install-gh-release repo, tag (determined from with input(s))
jdx/mise-action version, sha256 jdx/mise
oven-sh/setup-bun bun-version bun
pdm-project/setup-pdm version pdm
pnpm/action-setup version pnpm
pnpm/setup version, runtime pnpm
prefix-dev/setup-pixi pixi-version prefix-dev/pixi
pypa/hatch version pypa/hatch
ruby/setup-ruby ruby-version ruby
sigoden/install-binary repo, tag (determined from with input(s))
sigstore/cosign-installer cosign-release sigstore/cosign
UpCloudLtd/upcloud-cli-action version UpCloudLtd/upcloud-cli
zizmorcore/zizmor-action version ghcr.io/zizmorcore/zizmor