Skip to content

Commit 41a8e58

Browse files
committed
fix: --disableupdates not working & update to 2.318
1 parent 21f2a38 commit 41a8e58

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
FROM myoung34/github-runner:2.317.0-ubuntu-focal
1+
FROM myoung34/github-runner:2.318.0-ubuntu-focal
22

33
# modify actions runner binaries to allow custom cache server implementation
44
# https://gha-cache-server.falcondev.io/getting-started
55
RUN sed -i 's/\x41\x00\x43\x00\x54\x00\x49\x00\x4F\x00\x4E\x00\x53\x00\x5F\x00\x43\x00\x41\x00\x43\x00\x48\x00\x45\x00\x5F\x00\x55\x00\x52\x00\x4C\x00/\x41\x00\x43\x00\x54\x00\x49\x00\x4F\x00\x4E\x00\x53\x00\x5F\x00\x43\x00\x41\x00\x43\x00\x48\x00\x45\x00\x5F\x00\x4F\x00\x52\x00\x4C\x00/g' /actions-runner/bin/Runner.Worker.dll
66

7-
CMD timeout $TIMEOUT ./bin/Runner.Listener run --startuptype service --disableupdate
7+
CMD timeout $TIMEOUT ./bin/Runner.Listener run --startuptype service

runner/main.tf

+1
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ resource "aws_ecs_task_definition" "this" {
101101

102102
environment = [
103103
{ name = "ACTIONS_CACHE_URL", value = var.cache_url },
104+
{ name = "DISABLE_AUTO_UPDATE", value = "1" },
104105
]
105106

106107
logConfiguration = {

0 commit comments

Comments
 (0)