diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4568ea98..39426ba9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -125,6 +125,9 @@ jobs: - uses: actions/checkout@v3 with: submodules: recursive + - uses: actions/setup-go@v5 + with: + go-version: "^1.18" - name: Install cargo-dist run: ${{ matrix.install-dist }} - name: Install Cross @@ -187,7 +190,9 @@ jobs: && (needs.upload-artifacts.result == 'skipped' || needs.upload-artifacts.result == 'success') }} - runs-on: ubuntu-latest + runs-on: + group: bottlerocket + labels: bottlerocket_ubuntu-latest_8-core env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_REF_NAME: ${{ github.ref_name }} @@ -195,6 +200,9 @@ jobs: - uses: actions/checkout@v3 with: submodules: recursive + - uses: actions/setup-go@v5 + with: + go-version: "^1.18" - name: mark release as non-draft run: | gh release edit "${GITHUB_REF_NAME}" --draft=false diff --git a/Cargo.lock b/Cargo.lock index 4f99b759..e50708f1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3866,7 +3866,7 @@ dependencies = [ [[package]] name = "twoliter" -version = "0.5.0-rc2" +version = "0.5.0-rc3" dependencies = [ "anyhow", "async-recursion", diff --git a/Cargo.toml b/Cargo.toml index 293f62c6..1a3a52f9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -51,7 +51,7 @@ pubsys-setup = { version = "0.1", path = "tools/pubsys-setup", artifact = [ "bin testsys = { version = "0.1", path = "tools/testsys", artifact = [ "bin:testsys" ] } testsys-config = { version = "0.1", path = "tools/testsys-config" } testsys-model = { version = "0.0.14", git = "https://github.com/bottlerocket-os/bottlerocket-test-system", tag = "v0.0.14" } -twoliter = { version = "0.5.0-rc2", path = "twoliter", artifact = [ "bin:twoliter" ] } +twoliter = { version = "0.5.0-rc3", path = "twoliter", artifact = [ "bin:twoliter" ] } unplug = { version = "0.1", path = "tools/unplug", artifact = [ "bin:unplug" ] } update-metadata = { version = "0.1", path = "tools/update-metadata" } diff --git a/twoliter/Cargo.toml b/twoliter/Cargo.toml index 9cc54e28..801ee48b 100644 --- a/twoliter/Cargo.toml +++ b/twoliter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "twoliter" -version = "0.5.0-rc2" +version = "0.5.0-rc3" edition = "2021" description = "A command line tool for creating custom builds of Bottlerocket" authors = ["Matthew James Briggs "]