From 09506a9f34c441937422e1e01a76dcf14dfcb5ba Mon Sep 17 00:00:00 2001 From: Bernt Popp Date: Mon, 13 Jul 2026 22:18:48 +0200 Subject: [PATCH] ci: re-pin container standard to 35f31f3 to restore Container CI MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The reusable container workflows were pinned at `58d011d`, whose `_container-ci.yml` references `${{ runner.temp }}` from a job-level `env:` block. The `runner` context does not exist there, so GitHub rejects the workflow at validation time: every Container CI run is created with ZERO jobs and reports a bare "failure". Container CI is therefore currently dead in this repo — it reports failure without ever executing a single job. This re-pins both the CI and release callers to the corrected standard revision `35f31f3`, which moves that variable into valid step-level scope and restores the PR-time gate. Released images are unaffected (container-release.yml is a separate file and ran fully), so this is a CI-infrastructure re-pin only: no version bump, no CHANGELOG entry, no tag, no re-release. Co-Authored-By: Claude Opus 4.8 Claude-Session: https://claude.ai/code/session_011RiEgEWKERebTxeD2fvsph --- .github/workflows/container-ci.yml | 2 +- .github/workflows/container-release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/container-ci.yml b/.github/workflows/container-ci.yml index 557d2ee..6a6761d 100644 --- a/.github/workflows/container-ci.yml +++ b/.github/workflows/container-ci.yml @@ -35,4 +35,4 @@ permissions: jobs: container-ci: - uses: berntpopp/genefoundry-router/.github/workflows/_container-ci.yml@58d011d9c72efe90337244342fdec703f2b5b4b9 + uses: berntpopp/genefoundry-router/.github/workflows/_container-ci.yml@35f31f3a53fd423ca4f88f4d10e13d4f23011b7a diff --git a/.github/workflows/container-release.yml b/.github/workflows/container-release.yml index 70f9154..e4722e6 100644 --- a/.github/workflows/container-release.yml +++ b/.github/workflows/container-release.yml @@ -17,4 +17,4 @@ permissions: jobs: release: - uses: berntpopp/genefoundry-router/.github/workflows/_container-release.yml@58d011d9c72efe90337244342fdec703f2b5b4b9 + uses: berntpopp/genefoundry-router/.github/workflows/_container-release.yml@35f31f3a53fd423ca4f88f4d10e13d4f23011b7a