You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+17-3Lines changed: 17 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -296,7 +296,7 @@ If the time in VM is not correct, You can use `sync-time` option to synchronize
296
296
```
297
297
...
298
298
steps:
299
-
- uses: actions/checkout@v4
299
+
- uses: actions/checkout@v6
300
300
- name: Test
301
301
id: test
302
302
uses: vmactions/openbsd-vm@v1
@@ -306,12 +306,26 @@ If the time in VM is not correct, You can use `sync-time` option to synchronize
306
306
```
307
307
308
308
309
+
## 9. Disable cache
310
+
311
+
By default, the action caches `apt` packages on the host and VM images/artifacts. You can use the `disableCache` option to disable this:
309
312
313
+
```yml
314
+
...
315
+
steps:
316
+
- uses: actions/checkout@v6
317
+
- name: Test
318
+
id: test
319
+
uses: vmactions/openbsd-vm@v1
320
+
with:
321
+
disable-cache: true
322
+
...
323
+
```
310
324
311
325
312
-
## 9. Debug locally
326
+
## 10. Debug locally
313
327
314
-
You can use [AnyVM](https://github.com/anyvm-org/anyvm) to run the OpenBSD VM locally for debugging. It's the same environment as in the GitHub Actions.
328
+
You can use [AnyVM.org](https://github.com/anyvm-org/anyvm) to run the OpenBSD VM locally for debugging. It's the same environment as in the GitHub Actions.
0 commit comments