From 2f56cab9531ce8926e963651bebd210ce9b754ed Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Nov 2021 15:43:04 +0100 Subject: [PATCH] Bump home-assistant/builder from 2021.09.0 to 2021.11.4 (#3323) * Bump home-assistant/builder from 2021.09.0 to 2021.11.4 Bumps [home-assistant/builder](https://github.com/home-assistant/builder) from 2021.09.0 to 2021.11.4. - [Release notes](https://github.com/home-assistant/builder/releases) - [Commits](https://github.com/home-assistant/builder/compare/2021.09.0...2021.11.4) --- updated-dependencies: - dependency-name: home-assistant/builder dependency-type: direct:production ... Signed-off-by: dependabot[bot] * CAS fixes Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Ludeeus --- .github/workflows/builder.yml | 8 ++++---- build.json | 21 --------------------- build.yaml | 20 ++++++++++++++++++++ 3 files changed, 24 insertions(+), 25 deletions(-) delete mode 100644 build.json create mode 100644 build.yaml diff --git a/.github/workflows/builder.yml b/.github/workflows/builder.yml index c0005de57..29a583392 100644 --- a/.github/workflows/builder.yml +++ b/.github/workflows/builder.yml @@ -127,15 +127,15 @@ jobs: run: echo "BUILD_ARGS=--test" >> $GITHUB_ENV - name: Build supervisor - uses: home-assistant/builder@2021.09.0 + uses: home-assistant/builder@2021.11.4 with: args: | $BUILD_ARGS \ --${{ matrix.arch }} \ --target /data \ - --with-codenotary "${{ secrets.VCN_USER }}" "${{ secrets.VCN_PASSWORD }}" "${{ secrets.VCN_ORG }}" \ - --validate-from "${{ secrets.VCN_ORG }}" \ --generic ${{ needs.init.outputs.version }} + env: + CAS_API_KEY: ${{ secrets.CAS_TOKEN }} codenotary: name: CodeNotary signature @@ -199,7 +199,7 @@ jobs: - name: Build the Supervisor if: needs.init.outputs.publish != 'true' - uses: home-assistant/builder@2021.09.0 + uses: home-assistant/builder@2021.11.4 with: args: | --test \ diff --git a/build.json b/build.json deleted file mode 100644 index 62ceaf8e4..000000000 --- a/build.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "image": "homeassistant/{arch}-hassio-supervisor", - "shadow_repository": "ghcr.io/home-assistant", - "build_from": { - "aarch64": "ghcr.io/home-assistant/aarch64-base-python:3.9-alpine3.14", - "armhf": "ghcr.io/home-assistant/armhf-base-python:3.9-alpine3.14", - "armv7": "ghcr.io/home-assistant/armv7-base-python:3.9-alpine3.14", - "amd64": "ghcr.io/home-assistant/amd64-base-python:3.9-alpine3.14", - "i386": "ghcr.io/home-assistant/i386-base-python:3.9-alpine3.14" - }, - "labels": { - "io.hass.type": "supervisor", - "org.opencontainers.image.title": "Home Assistant Supervisor", - "org.opencontainers.image.description": "Container-based system for managing Home Assistant Core installation", - "org.opencontainers.image.source": "https://github.com/home-assistant/supervisor", - "org.opencontainers.image.authors": "The Home Assistant Authors", - "org.opencontainers.image.url": "https://www.home-assistant.io/", - "org.opencontainers.image.documentation": "https://www.home-assistant.io/docs/", - "org.opencontainers.image.licenses": "Apache License 2.0" - } -} \ No newline at end of file diff --git a/build.yaml b/build.yaml new file mode 100644 index 000000000..28ea4c036 --- /dev/null +++ b/build.yaml @@ -0,0 +1,20 @@ +image: homeassistant/{arch}-hassio-supervisor +shadow_repository: ghcr.io/home-assistant +build_from: + aarch64: ghcr.io/home-assistant/aarch64-base-python:3.9-alpine3.14 + armhf: ghcr.io/home-assistant/armhf-base-python:3.9-alpine3.14 + armv7: ghcr.io/home-assistant/armv7-base-python:3.9-alpine3.14 + amd64: ghcr.io/home-assistant/amd64-base-python:3.9-alpine3.14 + i386: ghcr.io/home-assistant/i386-base-python:3.9-alpine3.14 +codenotary: + signer: notary@home-assistant.io + base_image: notary@home-assistant.io +labels: + io.hass.type: supervisor + org.opencontainers.image.title: Home Assistant Supervisor + org.opencontainers.image.description: Container-based system for managing Home Assistant Core installation + org.opencontainers.image.source: https://github.com/home-assistant/supervisor + org.opencontainers.image.authors: The Home Assistant Authors + org.opencontainers.image.url: https://www.home-assistant.io/ + org.opencontainers.image.documentation: https://www.home-assistant.io/docs/ + org.opencontainers.image.licenses: Apache License 2.0