Skip to content

chore(deps): update datum-cloud/actions action to v1.20.0#47

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/datum-cloud-actions-1.x
Open

chore(deps): update datum-cloud/actions action to v1.20.0#47
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/datum-cloud-actions-1.x

Conversation

@renovate

@renovate renovate Bot commented Oct 18, 2025

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Type Update Change
datum-cloud/actions action minor v1.5.2v1.20.0

Release Notes

datum-cloud/actions (datum-cloud/actions)

v1.20.0

Compare Source

publish-kustomize-bundle: add a multi-image images input (a list of {path, name, tag}) so a bundle can pin several differently-named images across their overlays in one call. Backward-compatible — the existing single-image image-name / image-overlays inputs are unchanged and used when images is omitted. (#​89)

v1.19.0

Compare Source

Add a build-secrets input to publish-docker.yaml for forwarding BuildKit secrets (RUN --mount=type=secret,id=<name>) to the image build — e.g. authenticated apt/package repositories — without baking them into image layers or history. Passed via the caller's secrets: block. (#​87)

v1.18.0

Compare Source

update-plugin-index is now a composite action

The plugin-catalog updater from v1.17.0 shipped as a reusable workflow, but that form can't actually authenticate cross-repo: a GitHub App token minted in one job and handed to a reusable-workflow job arrives empty, because masked secret values don't survive the job-to-job hop. This release re-delivers it as a composite action so the token is minted and used in the same job.

Same job — same purpose: when a service publishes a release, open a PR against your datumctl plugin catalog that bumps the plugin's manifest to the new version, refreshing every per-platform download URL and checksum straight from the release's checksums.txt. Nothing about a specific plugin is hardcoded, and the manifest's formatting and comments are preserved.

Using it

Mint the catalog token and call the action in the same job:

- name: Mint catalog token
  id: app-token
  uses: actions/create-github-app-token@v2
  with:
    app-id: ${{ secrets.PLUGIN_INDEX_APP_ID }}
    private-key: ${{ secrets.PLUGIN_INDEX_APP_PRIVATE_KEY }}
    owner: your-org
    repositories: your-catalog

- name: Open the catalog PR
  uses: datum-cloud/actions/update-plugin-index@v1.18.0
  with:
    index-repo: your-org/your-catalog
    plugin-name: your-plugin
    version: ${{ github.event.release.tag_name }}
    token: ${{ steps.app-token.outputs.token }}
Migrating from v1.17.0
  • Reference the action path datum-cloud/actions/update-plugin-index@v1.18.0, not the .github/workflows/... reusable-workflow path.
  • The credential is now the token input (mint it in the same job) instead of the PLUGIN_INDEX_TOKEN secret.
  • The generated PR now links back to the source release so reviewers can see what shipped.

The reusable-workflow form from v1.17.0 is superseded and should not be used.

Full Changelog: datum-cloud/actions@v1.17.0...v1.18.0

v1.17.0

Compare Source

Keep plugin catalogs in sync with releases — automatically

Adds the update-plugin-index reusable workflow. When a service publishes a release, it opens a PR against your datumctl plugin catalog that bumps the plugin's manifest to the new version — refreshing every per-platform download URL and checksum straight from the release's checksums.txt. No more hand-editing a catalog manifest after each release.

  • Generic across plugins — it derives what to update from the manifest's existing platform list, so nothing about a specific plugin is hardcoded.
  • Safe cross-repo — authenticates to the catalog repo with a token you supply, and preserves the manifest's formatting and comments (only version, URLs, and checksums change).
  • Drop-in — leaves the rest of your release pipeline untouched; the catalog's own CI still validates the resulting PR.
Using it
uses: datum-cloud/actions/.github/workflows/update-plugin-index.yaml@v1.17.0
with:
  index-repo: your-org/your-catalog
  plugin-name: your-plugin
  version: ${{ github.event.release.tag_name }}
secrets:
  PLUGIN_INDEX_TOKEN: ${{ steps.app-token.outputs.token }}

Introduced in #​84.

Full Changelog: datum-cloud/actions@v1.16.0...v1.17.0

v1.16.0

Compare Source

What's Changed
  • chore(deps): update docker/login-action action to v4.2.0 by @​renovate[bot] in #​74
  • feat(nix): add nix-update-hash reusable workflow by @​drewr in #​75
  • chore(deps): update peter-evans/create-pull-request action to v8 by @​renovate[bot] in #​76
  • fix(nix): push hash update directly to triggering branch by @​drewr in #​77
  • feat(validate-kustomize): build with LoadRestrictionsNone by default by @​scotwells in #​80

Full Changelog: datum-cloud/actions@v1.15.0...v1.16.0

v1.15.0

Compare Source

What's Changed

Full Changelog: datum-cloud/actions@v1.14.0...v1.15.0

v1.14.0

Compare Source

What's Changed
New Contributors

Full Changelog: datum-cloud/actions@v1.13.3...v1.14.0

v1.13.3

Compare Source

Remove manual kustomize install steps — kustomize is already pre-installed on GitHub-hosted runners.

v1.13.2

Compare Source

What's Changed

Full Changelog: datum-cloud/actions@v1.13.1...v1.13.2

v1.13.1

Compare Source

v1.13.0

Compare Source

v1.12.1

Compare Source

What's Changed

  • fix: checkout main branch in publish-release to fix detached HEAD push failure by @​scotwells in #​57

Full Changelog: datum-cloud/actions@v0.12.0...v1.12.1

v1.12.0

Compare Source

What's Changed

Full Changelog: datum-cloud/actions@v1.11.0...v0.12.0

What's Changed

Full Changelog: datum-cloud/actions@v1.11.0...v1.12.0

v1.11.0

Compare Source

What's Changed
  • fix: support packages in subdirectories for npm publishing — The publish-npm-package workflow now correctly handles packages that live in subdirectories (e.g. ui/) by reading packageManager from the package's own package.json and running install/build in the correct working directory.

v1.10.0

Compare Source

What's Changed
New Contributors

Full Changelog: datum-cloud/actions@v1.9.0...v1.10.0

v1.9.0

Compare Source

What's Changed
  • chore(deps): update actions/checkout action to v6 by @​renovate[bot] in #​32
  • chore(deps): update actions/upload-artifact action to v5 by @​renovate[bot] in #​30
  • chore(deps): update fluxcd/flux2 action to v2.7.5 by @​renovate[bot] in #​28
  • chore(deps): update actions/upload-artifact action to v6 by @​renovate[bot] in #​34
  • chore(deps): update docker/login-action action to v3.6.0 by @​renovate[bot] in #​17
  • chore: add context and dockerfile-path params and resolve intermittent kustomize OCI artifact structure by @​OscarLlamas6 in #​33

Full Changelog: datum-cloud/actions@v1.8.1...v1.9.0

v1.8.1

Compare Source

What's Changed
New Contributors

Full Changelog: datum-cloud/actions@v1.8.0...v1.8.1

v1.8.0

Compare Source

What's Changed

Full Changelog: datum-cloud/actions@v1.7.4...v1.8.0

v1.7.4

Compare Source

What's Changed

Full Changelog: datum-cloud/actions@v1.7.3...v1.7.4

v1.7.3

Compare Source

What's Changed

Full Changelog: datum-cloud/actions@v1.7.2...v1.7.3

v1.7.2

Compare Source

What's Changed
  • chore: add semver compliance, new outputs and build target support to workflows by @​OscarLlamas6 in #​25

Full Changelog: datum-cloud/actions@v1.7.1...v1.7.2

v1.7.1

Compare Source

What's Changed
  • Forces a SemVer compliant version number on all builds

Full Changelog: datum-cloud/actions@v1.7.0...v1.7.1

v1.7.0

Compare Source

What's Changed

Full Changelog: datum-cloud/actions@v1.6.5...v1.7.0

v1.6.5

Compare Source

What's Changed

Full Changelog: datum-cloud/actions@v1.6.4...v1.6.5

v1.6.4

Compare Source

What's Changed

Full Changelog: datum-cloud/actions@v1.6.3...v1.6.4

v1.6.3

Compare Source

What's Changed

Full Changelog: datum-cloud/actions@v1.6.2...v1.6.3

v1.6.2

Compare Source

What's Changed

Full Changelog: datum-cloud/actions@v1.6.1...v1.6.2

v1.6.1

Compare Source

What's Changed

Full Changelog: datum-cloud/actions@v1.6.0...v1.6.1

v1.6.0

Compare Source

What's Changed
New Contributors

Full Changelog: datum-cloud/actions@v1.5.2...v1.6.0


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot force-pushed the renovate/datum-cloud-actions-1.x branch from d51e23b to 1f89328 Compare October 23, 2025 08:12
@renovate renovate Bot changed the title chore(deps): update datum-cloud/actions action to v1.7.1 chore(deps): update datum-cloud/actions action to v1.7.2 Oct 23, 2025
@renovate renovate Bot force-pushed the renovate/datum-cloud-actions-1.x branch from 1f89328 to 31b7ded Compare October 24, 2025 04:29
@renovate renovate Bot changed the title chore(deps): update datum-cloud/actions action to v1.7.2 chore(deps): update datum-cloud/actions action to v1.7.3 Oct 24, 2025
@renovate renovate Bot changed the title chore(deps): update datum-cloud/actions action to v1.7.3 chore(deps): update datum-cloud/actions action to v1.7.4 Oct 31, 2025
@renovate renovate Bot force-pushed the renovate/datum-cloud-actions-1.x branch from 31b7ded to 20e610b Compare October 31, 2025 07:08
@renovate renovate Bot force-pushed the renovate/datum-cloud-actions-1.x branch from 20e610b to c8f267a Compare November 19, 2025 16:40
@renovate renovate Bot changed the title chore(deps): update datum-cloud/actions action to v1.7.4 chore(deps): update datum-cloud/actions action to v1.8.0 Nov 19, 2025
@renovate renovate Bot changed the title chore(deps): update datum-cloud/actions action to v1.8.0 chore(deps): update datum-cloud/actions action to v1.8.1 Nov 19, 2025
@renovate renovate Bot force-pushed the renovate/datum-cloud-actions-1.x branch from c8f267a to 5fe459e Compare November 19, 2025 21:08
@renovate renovate Bot changed the title chore(deps): update datum-cloud/actions action to v1.8.1 chore(deps): update datum-cloud/actions action to v1.9.0 Dec 19, 2025
@renovate renovate Bot force-pushed the renovate/datum-cloud-actions-1.x branch from 5fe459e to 4037ad1 Compare December 19, 2025 02:43
@renovate renovate Bot force-pushed the renovate/datum-cloud-actions-1.x branch from 4037ad1 to 7167926 Compare March 10, 2026 19:02
@renovate renovate Bot changed the title chore(deps): update datum-cloud/actions action to v1.9.0 chore(deps): update datum-cloud/actions action to v1.11.0 Mar 10, 2026
@cla-assistant

cla-assistant Bot commented Mar 10, 2026

Copy link
Copy Markdown

CLA assistant check
All committers have signed the CLA.

@cla-assistant

cla-assistant Bot commented Mar 10, 2026

Copy link
Copy Markdown

CLA assistant check
Thank you for your submission! We really appreciate it. Like many open source projects, we ask that you sign our Contributor License Agreement before we can accept your contribution.
You have signed the CLA already but the status is still pending? Let us recheck it.

@renovate renovate Bot changed the title chore(deps): update datum-cloud/actions action to v1.11.0 chore(deps): update datum-cloud/actions action to v1.12.1 Mar 12, 2026
@renovate renovate Bot force-pushed the renovate/datum-cloud-actions-1.x branch from 7167926 to 280965e Compare March 12, 2026 12:50
@renovate renovate Bot force-pushed the renovate/datum-cloud-actions-1.x branch from 280965e to d471257 Compare April 2, 2026 18:09
@renovate renovate Bot changed the title chore(deps): update datum-cloud/actions action to v1.12.1 chore(deps): update datum-cloud/actions action to v1.13.1 Apr 2, 2026
@renovate renovate Bot force-pushed the renovate/datum-cloud-actions-1.x branch from d471257 to fdc00a1 Compare April 10, 2026 17:46
@renovate renovate Bot changed the title chore(deps): update datum-cloud/actions action to v1.13.1 chore(deps): update datum-cloud/actions action to v1.13.2 Apr 10, 2026
@renovate renovate Bot force-pushed the renovate/datum-cloud-actions-1.x branch from fdc00a1 to 0c2ebc7 Compare April 13, 2026 21:03
@renovate renovate Bot changed the title chore(deps): update datum-cloud/actions action to v1.13.2 chore(deps): update datum-cloud/actions action to v1.13.3 Apr 13, 2026
@renovate renovate Bot changed the title chore(deps): update datum-cloud/actions action to v1.13.3 chore(deps): update datum-cloud/actions action to v1.14.0 Apr 27, 2026
@renovate renovate Bot force-pushed the renovate/datum-cloud-actions-1.x branch from 0c2ebc7 to 2e7bcb5 Compare April 27, 2026 23:43
@renovate renovate Bot force-pushed the renovate/datum-cloud-actions-1.x branch from 2e7bcb5 to 8f31556 Compare May 21, 2026 18:32
@renovate renovate Bot changed the title chore(deps): update datum-cloud/actions action to v1.14.0 chore(deps): update datum-cloud/actions action to v1.15.0 May 21, 2026
@renovate renovate Bot force-pushed the renovate/datum-cloud-actions-1.x branch from 8f31556 to e78e661 Compare June 17, 2026 23:49
@renovate renovate Bot changed the title chore(deps): update datum-cloud/actions action to v1.15.0 chore(deps): update datum-cloud/actions action to v1.16.0 Jun 17, 2026
@renovate renovate Bot force-pushed the renovate/datum-cloud-actions-1.x branch from e78e661 to 8cc4ca9 Compare July 1, 2026 21:43
@renovate renovate Bot changed the title chore(deps): update datum-cloud/actions action to v1.16.0 chore(deps): update datum-cloud/actions action to v1.18.0 Jul 1, 2026
@renovate renovate Bot force-pushed the renovate/datum-cloud-actions-1.x branch from 8cc4ca9 to 3382088 Compare July 8, 2026 01:04
@renovate renovate Bot changed the title chore(deps): update datum-cloud/actions action to v1.18.0 chore(deps): update datum-cloud/actions action to v1.20.0 Jul 8, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants