Skip to content

Commit b05d7d5

Browse files
committed
new default cx23
1 parent 70c9c13 commit b05d7d5

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ jobs:
110110
mode: create
111111
github_token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
112112
hcloud_token: ${{ secrets.HCLOUD_TOKEN }}
113-
server_type: cx22
113+
server_type: cx23
114114
location: nbg1 # Nuremberg, Germany
115115
image: rocky-9 # Rocky Linux 9
116116

@@ -167,7 +167,7 @@ jobs:
167167
| `runner_version` | | GitHub Actions Runner version (omit "v"; e.g., "2.321.0"). "latest" will install the latest version. "skip" will skip the installation. A working installation is expected in the `runner_dir`. | `latest` |
168168
| `runner_wait` | | Wait up to `runner_wait` retries (10 sec each) for runner registration. | `60` (10 min) |
169169
| `server_id` | ✓ (mode `stop`) | ID (integer) of Hetzner Cloud Server to delete. | |
170-
| `server_type` | | Name of the Server type this Server should be created with. | `cx22` (Intel x86, 2 vCPU, 4GB RAM, 40GB SSD) |
170+
| `server_type` | | Name of the Server type this Server should be created with. | `cx23` (Intel x86, 2 vCPU, 4GB RAM, 40GB SSD) |
171171
| `server_wait` | | Wait up to `server_wait` retries (10 sec each) for the Hetzner Cloud Server to start. | `30` (5 min) |
172172
| `ssh_key` | | SSH key ID (integer) which should be injected into the Server at creation time. | `null` |
173173
| `volume` | | Specify a Volume ID (integer) to attach and mount to the Server during creation. The volume will be automatically mounted at `/mnt/HC_Volume_[VOLUME-ID]`. The volume must be in the same location as the Server. More details in [Volumes section](#Volumes). | `null` |

action.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -206,9 +206,9 @@ fi
206206
# Check only if mode is delete.
207207
MY_HETZNER_SERVER_ID=${INPUT_SERVER_ID}
208208

209-
# Set the server type/instance type (default: cx22)
210-
# If INPUT_SERVER_TYPE is set, use its value; otherwise, use "cx22".
211-
MY_SERVER_TYPE=${INPUT_SERVER_TYPE:-"cx22"}
209+
# Set the server type/instance type (default: cx23)
210+
# If INPUT_SERVER_TYPE is set, use its value; otherwise, use "cx23".
211+
MY_SERVER_TYPE=${INPUT_SERVER_TYPE:-"cx23"}
212212

213213
# Set maximal retries * WAIT_SEC (10 sec) for Hetzner Cloud Server (default: 30 [5 min])
214214
# If INPUT_SERVER_WAIT is set, use its value; otherwise, use "30".

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ inputs:
101101
description: >-
102102
Name of the Server type this Server should be created with.
103103
required: false
104-
default: 'cx22'
104+
default: 'cx23'
105105
server_wait:
106106
description: >-
107107
Wait up to 'server_wait' retries (10 sec each) for the Hetzner Cloud Server to start (default: 30 = 5 min).

0 commit comments

Comments
 (0)