Skip to content

chore(deps): update actions/cache digest to 55cc834 - #2070

Closed
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/actions-cache-digest
Closed

renovate[bot] wants to merge 1 commit into
mainfrom
renovate/actions-cache-digest

Conversation

@renovate

@renovate renovate Bot commented Jun 26, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Type Update Change
actions/cache (changelog) action digest 2c8a9bd55cc834

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 requested a review from stranske as a code owner June 26, 2026 20:00
@coderabbitai

coderabbitai Bot commented Jun 26, 2026

Copy link
Copy Markdown

Review Change Stack

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: ASSERTIVE

Plan: Pro Plus

Run ID: 150049da-a33c-45ad-9f3f-26490782b9b9

📥 Commits

Reviewing files that changed from the base of the PR and between 3a0d9a3 and 7e05dee.

📒 Files selected for processing (2)
  • .github/actions/artifact-cache/action.yml
  • .github/workflows/agents-auto-pilot.yml
🔗 Linked repositories identified

CodeRabbit considers these linked repositories for cross-repo context during reviews:

  • stranske/Workflows (auto-detected)
  • stranske/Template (auto-detected)
📜 Recent review details
⚠️ CI failures not shown inline (4)

GitHub Actions: Agents Gate Followups / 1_Record autofix metrics.txt: chore(deps): update actions/cache digest to 55cc834

Conclusion: failure

View job details

##[group]Run actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3
 with:
   github-***REDACTED***
   script: const fs = require('fs');
const retryPath = './.github/scripts/github-api-with-retry.js';
const { createTokenAwareRetry } = fs.existsSync(retryPath)
  ? require(retryPath)
  : { createTokenAwareRetry: async () => ({
      withRetry: (fn) => fn(github),
      paginateWithRetry: (method, params) => github.paginate(method, params)
    }) };
const { withRetry, paginateWithRetry } = await createTokenAwareRetry({ github, core });
const prNumber = Number('0') || 0;
const attemptNumber = Number('0') || 0;
const attemptLimit = Number('0') || 0;
const headShaBefore = '';
const gateConclusionBefore =
  '' ||
  (context.payload.workflow_run?.conclusion || '');
const gateRunId =
  '' ||
  String(context.payload.workflow_run?.id || '');
const triggerReason = 'unknown';
const triggerJob = '';
const triggerStep = '';
const stopReason = '';
const codexAutofixResult = 'skipped';
const claudeAutofixResult = 'skipped';
const autofixResult =
  codexAutofixResult && codexAutofixResult !== 'skipped'
    ? codexAutofixResult
    : claudeAutofixResult;
const { owner, repo } = context.repo;
let fixApplied = false;
let headShaAfter = headShaBefore;
let gateResultAfter = gateConclusionBefore || 'unknown';
if (prNumber) {
  try {
    const { data: pr } = await withRetry((client) => client.rest.pulls.get({
      owner,
      repo,
      pull_number: prNumber,
    }));
    headShaAfter = pr.head?.sha || headShaAfter;
      fixApplied = Boolean(
        headShaBefore && headShaAfter && headShaBefore !== headShaAfter
      );
    // Remove autofix:escalated label when fixes are applied
    // This allows re-escalation to the agent if Gate fails again
    if (fixApplied) {
      const prLabels = pr.labels?.map(l => l.name) || [];
      if (prLabels.includes('autofix:escalated')) {
        try {
          await withRetry((client) => client.rest.issues.removeLabel({
            own...

GitHub Actions: Agents Verifier / check: chore(deps): update actions/cache digest to 55cc834

Conclusion: failure

View job details

##[group]Run set -euo pipefail
 �[36;1mset -euo pipefail�[0m
 �[36;1m�[0m
 �[36;1m# Use dedicated scripts dir, create if needed�[0m
 �[36;1mINSTALL_DIR=""�[0m
 �[36;1mif [ -z "$INSTALL_DIR" ]; then�[0m
 �[36;1m  INSTALL_DIR="$***GITHUB_WORKSPACE***/.github/scripts"�[0m
 �[36;1mfi�[0m
 �[36;1mmkdir -p "$INSTALL_DIR"�[0m
 �[36;1m�[0m
 �[36;1mecho "📦 Installing `@octokit` dependencies in $INSTALL_DIR..."�[0m
 �[36;1mcd "$INSTALL_DIR"�[0m
 �[36;1m�[0m
 �[36;1mdeclare -a VENDORED_ALIAS_DIRS=()�[0m
 �[36;1m�[0m
 �[36;1mcleanup_vendor_aliases() ***�[0m
 �[36;1m  if [ "$***`#VENDORED_ALIAS_DIRS`[@]***" -eq 0 ]; then�[0m
 �[36;1m    return 0�[0m
 �[36;1m  fi�[0m
 �[36;1m�[0m
 �[36;1m  local cleanup_dir="$INSTALL_DIR"�[0m
 �[36;1m  if [ -z "$cleanup_dir" ]; then�[0m
 �[36;1m    echo "::warning::Install dir is empty, skipping vendored alias cleanup"�[0m
 �[36;1m    return 0�[0m
 �[36;1m  fi�[0m
 �[36;1m�[0m
 �[36;1m  if ! pushd "$cleanup_dir" >/dev/null 2>&1; then�[0m
 �[36;1m    echo "::warning::Failed to enter install dir \"$cleanup_dir\"; skipping vendored alias cleanup"�[0m
 �[36;1m    return 0�[0m
 �[36;1m  fi�[0m
 �[36;1m�[0m
 �[36;1m  for vendored_alias in "$***VENDORED_ALIAS_DIRS[@]***"; do�[0m
 �[36;1m    if [ -z "$vendored_alias" ]; then�[0m
 �[36;1m      continue�[0m
 �[36;1m    fi�[0m
 �[36;1m    rm -rf -- "$vendored_alias" || true�[0m
 �[36;1m    local parent_dir�[0m
 �[36;1m    parent_dir=$(dirname "$vendored_alias")�[0m
 �[36;1m    # Remove empty parent directories that may have been created for scoped packages�[0m
 �[36;1m    while [ "$parent_dir" != "." ] && [ "$parent_dir" != "/" ]; do�[0m
 �[36;1m      rmdir -- "$parent_dir" 2>/dev/null || break�[0m
 �[36;1m      parent_dir=$(dirname "$parent_dir")�[0m
 �[36;1m    done�[0m
 �[36;1m  done�[0m
 �[36;1m�[0m
 �[36;1m  popd >/dev/null 2>&1 || true�[0m
 �[36;1m***�[0m
 �[36;1m�[0m
 �[36;1mtrap cleanup_vendor_aliases EXIT�[0m
 �[36;1m�[0m
 �[36;1mcreate_vendor_aliases() ***�[0m
 �[36;1m  if [ ! -f "package.json" ];...

GitHub Actions: Agents Verifier / 2_check.txt: chore(deps): update actions/cache digest to 55cc834

Conclusion: failure

View job details

##[group]Run set -euo pipefail
 �[36;1mset -euo pipefail�[0m
 �[36;1m�[0m
 �[36;1m# Use dedicated scripts dir, create if needed�[0m
 �[36;1mINSTALL_DIR=""�[0m
 �[36;1mif [ -z "$INSTALL_DIR" ]; then�[0m
 �[36;1m  INSTALL_DIR="$***GITHUB_WORKSPACE***/.github/scripts"�[0m
 �[36;1mfi�[0m
 �[36;1mmkdir -p "$INSTALL_DIR"�[0m
 �[36;1m�[0m
 �[36;1mecho "📦 Installing `@octokit` dependencies in $INSTALL_DIR..."�[0m
 �[36;1mcd "$INSTALL_DIR"�[0m
 �[36;1m�[0m
 �[36;1mdeclare -a VENDORED_ALIAS_DIRS=()�[0m
 �[36;1m�[0m
 �[36;1mcleanup_vendor_aliases() ***�[0m
 �[36;1m  if [ "$***`#VENDORED_ALIAS_DIRS`[@]***" -eq 0 ]; then�[0m
 �[36;1m    return 0�[0m
 �[36;1m  fi�[0m
 �[36;1m�[0m
 �[36;1m  local cleanup_dir="$INSTALL_DIR"�[0m
 �[36;1m  if [ -z "$cleanup_dir" ]; then�[0m
 �[36;1m    echo "::warning::Install dir is empty, skipping vendored alias cleanup"�[0m
 �[36;1m    return 0�[0m
 �[36;1m  fi�[0m
 �[36;1m�[0m
 �[36;1m  if ! pushd "$cleanup_dir" >/dev/null 2>&1; then�[0m
 �[36;1m    echo "::warning::Failed to enter install dir \"$cleanup_dir\"; skipping vendored alias cleanup"�[0m
 �[36;1m    return 0�[0m
 �[36;1m  fi�[0m
 �[36;1m�[0m
 �[36;1m  for vendored_alias in "$***VENDORED_ALIAS_DIRS[@]***"; do�[0m
 �[36;1m    if [ -z "$vendored_alias" ]; then�[0m
 �[36;1m      continue�[0m
 �[36;1m    fi�[0m
 �[36;1m    rm -rf -- "$vendored_alias" || true�[0m
 �[36;1m    local parent_dir�[0m
 �[36;1m    parent_dir=$(dirname "$vendored_alias")�[0m
 �[36;1m    # Remove empty parent directories that may have been created for scoped packages�[0m
 �[36;1m    while [ "$parent_dir" != "." ] && [ "$parent_dir" != "/" ]; do�[0m
 �[36;1m      rmdir -- "$parent_dir" 2>/dev/null || break�[0m
 �[36;1m      parent_dir=$(dirname "$parent_dir")�[0m
 �[36;1m    done�[0m
 �[36;1m  done�[0m
 �[36;1m�[0m
 �[36;1m  popd >/dev/null 2>&1 || true�[0m
 �[36;1m***�[0m
 �[36;1m�[0m
 �[36;1mtrap cleanup_vendor_aliases EXIT�[0m
 �[36;1m�[0m
 �[36;1mcreate_vendor_aliases() ***�[0m
 �[36;1m  if [ ! -f "package.json" ];...

GitHub Actions: Agents Gate Followups / Record autofix metrics: chore(deps): update actions/cache digest to 55cc834

Conclusion: failure

View job details

##[group]Run actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3
 with:
   github-***REDACTED***
   script: const fs = require('fs');
const retryPath = './.github/scripts/github-api-with-retry.js';
const { createTokenAwareRetry } = fs.existsSync(retryPath)
  ? require(retryPath)
  : { createTokenAwareRetry: async () => ({
      withRetry: (fn) => fn(github),
      paginateWithRetry: (method, params) => github.paginate(method, params)
    }) };
const { withRetry, paginateWithRetry } = await createTokenAwareRetry({ github, core });
const prNumber = Number('0') || 0;
const attemptNumber = Number('0') || 0;
const attemptLimit = Number('0') || 0;
const headShaBefore = '';
const gateConclusionBefore =
  '' ||
  (context.payload.workflow_run?.conclusion || '');
const gateRunId =
  '' ||
  String(context.payload.workflow_run?.id || '');
const triggerReason = 'unknown';
const triggerJob = '';
const triggerStep = '';
const stopReason = '';
const codexAutofixResult = 'skipped';
const claudeAutofixResult = 'skipped';
const autofixResult =
  codexAutofixResult && codexAutofixResult !== 'skipped'
    ? codexAutofixResult
    : claudeAutofixResult;
const { owner, repo } = context.repo;
let fixApplied = false;
let headShaAfter = headShaBefore;
let gateResultAfter = gateConclusionBefore || 'unknown';
if (prNumber) {
  try {
    const { data: pr } = await withRetry((client) => client.rest.pulls.get({
      owner,
      repo,
      pull_number: prNumber,
    }));
    headShaAfter = pr.head?.sha || headShaAfter;
      fixApplied = Boolean(
        headShaBefore && headShaAfter && headShaBefore !== headShaAfter
      );
    // Remove autofix:escalated label when fixes are applied
    // This allows re-escalation to the agent if Gate fails again
    if (fixApplied) {
      const prLabels = pr.labels?.map(l => l.name) || [];
      if (prLabels.includes('autofix:escalated')) {
        try {
          await withRetry((client) => client.rest.issues.removeLabel({
            own...
🧰 Additional context used
📓 Path-based instructions (3)
.github/workflows/**/*.yml

📄 CodeRabbit inference engine (.github/copilot-instructions.md)

Do not use top-level permissions block on workflow_call reusable workflows as it conflicts with caller permissions

Files:

  • .github/workflows/agents-auto-pilot.yml
.github/workflows/*.yml

📄 CodeRabbit inference engine (CLAUDE.md)

Reference reusable workflows with @main by default unless intentionally pinning to a specific commit SHA for a controlled reason

Reference reusable workflows with @main in first-party consumers unless intentionally pinning to an exact commit SHA for a documented reason

Files:

  • .github/workflows/agents-auto-pilot.yml
.github/workflows/agents-*.yml

📄 CodeRabbit inference engine (CLAUDE.md)

Synced workflows (agents-*.yml), autofix logic, prompts, scripts, and consumer docs are managed through .github/sync-manifest.yml in stranske/Workflows and should not be edited locally — fix issues in the Workflows source repository instead

Edit agent workflow files (agents-*.yml) in stranske/Workflows, not in the consumer repo

Files:

  • .github/workflows/agents-auto-pilot.yml
🔀 Multi-repo context stranske/Workflows, stranske/Template

[::stranske/Workflows::] .github/actions/artifact-cache/action.yml:62actions/cache is pinned to 2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6.

[::stranske/Workflows::] .github/workflows/agents-auto-pilot.yml:225 — this workflow also pins the same actions/cache digest.

[::stranske/Template::] .github/actions/artifact-cache/action.yml:62 — same shared action still uses the old actions/cache pin.

[::stranske/Template::] .github/workflows/agents-auto-pilot.yml:225 — same workflow still uses the old actions/cache pin.

🔇 Additional comments (2)
.github/actions/artifact-cache/action.yml (1)

62-62: LGTM!

.github/workflows/agents-auto-pilot.yml (1)

225-225: LGTM!


📝 Walkthrough

Walkthrough

Updated two GitHub Actions cache steps to use newer pinned actions/cache commit SHAs while keeping the same v6 major version reference.

Changes

Cache action pin refresh

Layer / File(s) Summary
Pinned cache references
.github/actions/artifact-cache/action.yml, .github/workflows/agents-auto-pilot.yml
The composite artifact cache action and the auto-pilot workflow each update their actions/cache pin to a newer commit SHA.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~2 minutes

Suggested reviewers

  • stranske
🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title clearly and accurately summarizes the dependency digest update to actions/cache.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch renovate/actions-cache-digest

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

@renovate
renovate Bot had a problem deploying to agent-standard June 26, 2026 20:01 Failure
@stranske

Copy link
Copy Markdown
Owner

Closing as superseded by merged stranske/Workflows#2543; replacement workflow-template sync will propagate the canonical actions/cache digest.

@stranske stranske closed this Jun 26, 2026
@renovate

renovate Bot commented Jun 26, 2026

Copy link
Copy Markdown
Contributor Author

Renovate Ignore Notification

Because you closed this PR without merging, Renovate will ignore this update. You will not get PRs for the actions/cache 55cc834 update again.

If you accidentally closed this PR, or if you changed your mind: rename this PR to get a fresh replacement PR.

@renovate
renovate Bot deleted the renovate/actions-cache-digest branch June 26, 2026 23:29
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant