@@ -11,6 +11,7 @@ All the supported releases are here:
1111
1212| Release | x86_64 | aarch64(arm64) |
1313| ---------| ---------| ---------|
14+ | 7.8 | ✅ | ✅ |
1415| 7.7 | ✅ | ✅ |
1516| 7.6 | ✅ | ✅ |
1617| 7.5 | ✅ | ✅ |
4344 - uses : actions/checkout@v4
4445 - name : Test in OpenBSD
4546 id : test
46- uses : vmactions/openbsd-vm@v1
47+ uses : vmactions/openbsd-vm@
4748 with :
4849 envs : ' MYTOKEN MYTOKEN2'
4950 usesh : true
6869` ` `
6970
7071
71- The latest major version is: ` v1 `, which is the most recommended to use. (You can also use the latest full version: `v1.2.0 `)
72+ The latest major version is: ` ` , which is the most recommended to use. (You can also use the latest full version: ` ` )
7273
7374
7475If you are migrating from the previous ` v0`, please change the `runs-on: ` to `runs-on: ubuntu-latest`
@@ -105,7 +106,7 @@ The code is shared from the host to the VM via `rsync` by default, you can choos
105106 - uses: actions/checkout@v4
106107 - name: Test
107108 id: test
108- uses: vmactions/openbsd-vm@v1
109+ uses: vmactions/openbsd-vm@
109110 with:
110111 envs: 'MYTOKEN MYTOKEN2'
111112 usesh: true
@@ -134,7 +135,7 @@ When using `rsync`, you can define `copyback: false` to not copy files back fro
134135 - uses: actions/checkout@v4
135136 - name: Test
136137 id: test
137- uses: vmactions/openbsd-vm@v1
138+ uses: vmactions/openbsd-vm@
138139 with:
139140 envs: 'MYTOKEN MYTOKEN2'
140141 usesh: true
@@ -161,7 +162,7 @@ You can add NAT port between the host and the VM.
161162 - uses: actions/checkout@v4
162163 - name: Test
163164 id: test
164- uses: vmactions/openbsd-vm@v1
165+ uses: vmactions/openbsd-vm@
165166 with:
166167 envs: 'MYTOKEN MYTOKEN2'
167168 usesh: true
@@ -183,7 +184,7 @@ The default memory of the VM is 6144MB, you can use `mem` option to set the memo
183184 - uses: actions/checkout@v4
184185 - name: Test
185186 id: test
186- uses: vmactions/openbsd-vm@v1
187+ uses: vmactions/openbsd-vm@
187188 with:
188189 envs: 'MYTOKEN MYTOKEN2'
189190 usesh: true
@@ -200,7 +201,7 @@ The VM is using all the cpu cores of the host by default, you can use `cpu` opti
200201 - uses: actions/checkout@v4
201202 - name: Test
202203 id: test
203- uses: vmactions/openbsd-vm@v1
204+ uses: vmactions/openbsd-vm@
204205 with:
205206 envs: 'MYTOKEN MYTOKEN2'
206207 usesh: true
@@ -211,15 +212,15 @@ The VM is using all the cpu cores of the host by default, you can use `cpu` opti
211212
212213## 5. Select release
213214
214- It uses [the OpenBSD 7.7 ](conf/default.release.conf) by default, you can use `release` option to use another version of OpenBSD:
215+ It uses [the OpenBSD 7.8 ](conf/default.release.conf) by default, you can use `release` option to use another version of OpenBSD:
215216
216217```
217218...
218219 steps:
219220 - uses: actions/checkout@v4
220221 - name: Test
221222 id: test
222- uses: vmactions/openbsd-vm@v1
223+ uses: vmactions/openbsd-vm@
223224 with:
224225 release: "7.3"
225226...
@@ -236,7 +237,7 @@ The vm is using x86_64(AMD64) by default, but you can use `arch` option to chang
236237 - uses: actions/checkout@v4
237238 - name: Test
238239 id: test
239- uses: vmactions/openbsd-vm@v1
240+ uses: vmactions/openbsd-vm@
240241 with:
241242 release: "7.3"
242243 arch: aarch64
@@ -256,7 +257,7 @@ Support custom shell:
256257 - uses: actions/checkout@v4
257258 - name: Start VM
258259 id: vm
259- uses: vmactions/openbsd-vm@v1
260+ uses: vmactions/openbsd-vm@
260261 with:
261262 sync: nfs
262263 - name: Custom shell step 1
0 commit comments