Skip to content

Commit cc27b79

Browse files
committed
Change default buildcage image tag from 'v1' to '1'
1 parent 8333c8e commit cc27b79

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ Starts the buildcage builder container.
270270
| Parameter | Required | Default | Description |
271271
|-----------|----------|---------|-------------|
272272
| `buildcage_image` | No | `ghcr.io/dash14/buildcage` | Docker image name |
273-
| `buildcage_version` | No | `v1` | Image tag |
273+
| `buildcage_version` | No | `1` | Image tag |
274274
| `proxy_mode` | No | `restrict` | Operation mode (`audit` / `restrict`) |
275275
| `allowed_http_domains` | No | empty | Allowed HTTP domains (comma-separated) |
276276
| `allowed_https_domains` | No | empty | Allowed HTTPS domains (comma-separated) |

setup/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ inputs:
99
buildcage_version:
1010
description: "Image tag"
1111
required: false
12-
default: 'v1'
12+
default: '1'
1313
proxy_mode:
1414
description: "audit or restrict"
1515
required: false

setup/compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
builder:
3-
image: ${BUILDCAGE_IMAGE:-ghcr.io/dash14/buildcage}:${BUILDCAGE_VERSION:-latest}
3+
image: ${BUILDCAGE_IMAGE:-ghcr.io/dash14/buildcage}:${BUILDCAGE_VERSION:-1}
44
privileged: true
55
ports:
66
- "${PORT:-1234}:1234"

setup/main.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ execFileSync(
2020
ALLOWED_HTTP_DOMAINS: process.env.INPUT_ALLOWED_HTTP_DOMAINS || "",
2121
ALLOWED_HTTPS_DOMAINS: process.env.INPUT_ALLOWED_HTTPS_DOMAINS || "",
2222
BUILDCAGE_IMAGE: process.env.INPUT_BUILDCAGE_IMAGE || "ghcr.io/dash14/buildcage",
23-
BUILDCAGE_VERSION: process.env.INPUT_BUILDCAGE_VERSION || "latest",
23+
BUILDCAGE_VERSION: process.env.INPUT_BUILDCAGE_VERSION || "1",
2424
PORT: process.env.INPUT_PORT || "1234",
2525
},
2626
}

0 commit comments

Comments
 (0)