Skip to content

Commit 11bc0bf

Browse files
zzswangcursoragent
andauthored
fix: bump actions-runner to 2.336.0 (#20)
* fix: track actions-runner latest tag GitHub rejects job messages from runner versions that fall out of the support window, and ARC disables runner self-update, so a pinned base image silently breaks every runner once it expires (2.334.0 now returns 403 and exit code 7). Tracking latest avoids the recurring outage; the build forces a base image pull so inline cache cannot pin a stale digest. Co-authored-by: Cursor <cursoragent@cursor.com> * fix: pin actions-runner to 2.336.0 latest only resolves at build time; a published image is still a frozen snapshot, so tracking latest does not avoid the next deprecation outage and obscures which runner version each release contains. Pin 2.336.0 explicitly (current actions/runner release) to unblock ARC runners that fail with exit code 7 on deprecated 2.334.0. Co-authored-by: Cursor <cursoragent@cursor.com> --------- Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent 16f9ca3 commit 11bc0bf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ghcr.io/actions/actions-runner:2.334.0
1+
FROM ghcr.io/actions/actions-runner:2.336.0
22

33
RUN sudo apt update -y && \
44
sudo apt install -y curl make bash jq

0 commit comments

Comments
 (0)