diff --git a/README.md b/README.md index 0eb95a0..7e238a0 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ jobs: - uses: actions/checkout@v4 - name: Test in FreeBSD id: test - uses: bedwardly-down/freebsd-vm@rsync5 + uses: bedwardly-down/freebsd-vm@rsync6 with: envs: 'MYTOKEN MYTOKEN2' usesh: true @@ -46,7 +46,7 @@ jobs: ``` -The latest major version is: `rsync5`, which is the most recommended to use. (You can also use the latest full version: `rsync5`) +The latest major version is: `rsync6`, which is the most recommended to use. (You can also use the latest full version: `rsync6`) If you are migrating from the previous `v0`, please change the `runs-on: ` to `runs-on: ubuntu-latest` @@ -79,7 +79,7 @@ The code is shared from the host to the VM via `rsync` by default, you can choos - uses: actions/checkout@v4 - name: Test id: test - uses: bedwardly-down/freebsd-vm@rsync5 + uses: bedwardly-down/freebsd-vm@rsync6 with: envs: 'MYTOKEN MYTOKEN2' usesh: true @@ -108,7 +108,7 @@ When using `rsync`, you can define `copyback: false` to not copy files back fro - uses: actions/checkout@v4 - name: Test id: test - uses: bedwardly-down/freebsd-vm@rsync5 + uses: bedwardly-down/freebsd-vm@rsync6 with: envs: 'MYTOKEN MYTOKEN2' usesh: true @@ -134,7 +134,7 @@ You can add NAT port between the host and the VM. - uses: actions/checkout@v4 - name: Test id: test - uses: bedwardly-down/freebsd-vm@rsync5 + uses: bedwardly-down/freebsd-vm@rsync6 with: envs: 'MYTOKEN MYTOKEN2' usesh: true @@ -154,7 +154,7 @@ The default memory of the VM is 6144MB, you can use `mem` option to set the memo - uses: actions/checkout@v4 - name: Test id: test - uses: bedwardly-down/freebsd-vm@rsync5 + uses: bedwardly-down/freebsd-vm@rsync6 with: envs: 'MYTOKEN MYTOKEN2' usesh: true @@ -172,7 +172,7 @@ It uses [the FreeBSD CCACHE_1](conf/default.release.conf) by default, you can us - uses: actions/checkout@v4 - name: Test id: test - uses: bedwardly-down/freebsd-vm@rsync5 + uses: bedwardly-down/freebsd-vm@rsync6 with: release: "13.2" ...