forked from home-assistant/core
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'home-assistant:dev' into dev
- Loading branch information
Showing
4,798 changed files
with
293,134 additions
and
89,294 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,12 +24,12 @@ jobs: | |
publish: ${{ steps.version.outputs.publish }} | ||
steps: | ||
- name: Checkout the repository | ||
uses: actions/checkout@v3.5.3 | ||
uses: actions/checkout@v4.1.1 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Set up Python ${{ env.DEFAULT_PYTHON }} | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].1 | ||
with: | ||
python-version: ${{ env.DEFAULT_PYTHON }} | ||
|
||
|
@@ -56,10 +56,10 @@ jobs: | |
if: github.repository_owner == 'home-assistant' && needs.init.outputs.publish == 'true' | ||
steps: | ||
- name: Checkout the repository | ||
uses: actions/checkout@v3.5.3 | ||
uses: actions/checkout@v4.1.1 | ||
|
||
- name: Set up Python ${{ env.DEFAULT_PYTHON }} | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].1 | ||
with: | ||
python-version: ${{ env.DEFAULT_PYTHON }} | ||
|
||
|
@@ -98,7 +98,7 @@ jobs: | |
arch: ${{ fromJson(needs.init.outputs.architectures) }} | ||
steps: | ||
- name: Checkout the repository | ||
uses: actions/checkout@v3.5.3 | ||
uses: actions/checkout@v4.1.1 | ||
|
||
- name: Download nightly wheels of frontend | ||
if: needs.init.outputs.channel == 'dev' | ||
|
@@ -124,7 +124,7 @@ jobs: | |
|
||
- name: Set up Python ${{ env.DEFAULT_PYTHON }} | ||
if: needs.init.outputs.channel == 'dev' | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].1 | ||
with: | ||
python-version: ${{ env.DEFAULT_PYTHON }} | ||
|
||
|
@@ -190,23 +190,21 @@ jobs: | |
echo "${{ github.sha }};${{ github.ref }};${{ github.event_name }};${{ github.actor }}" > rootfs/OFFICIAL_IMAGE | ||
- name: Login to GitHub Container Registry | ||
uses: docker/login-action@v2.2.0 | ||
uses: docker/login-action@v3.0.0 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.repository_owner }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Build base image | ||
uses: home-assistant/builder@2023.08.0 | ||
uses: home-assistant/builder@2023.09.0 | ||
with: | ||
args: | | ||
$BUILD_ARGS \ | ||
--${{ matrix.arch }} \ | ||
--cosign \ | ||
--target /data \ | ||
--generic ${{ needs.init.outputs.version }} | ||
env: | ||
CAS_API_KEY: ${{ secrets.CAS_TOKEN }} | ||
- name: Archive translations | ||
shell: bash | ||
|
@@ -254,7 +252,7 @@ jobs: | |
- green | ||
steps: | ||
- name: Checkout the repository | ||
uses: actions/checkout@v3.5.3 | ||
uses: actions/checkout@v4.1.1 | ||
|
||
- name: Set build additional args | ||
run: | | ||
|
@@ -268,22 +266,20 @@ jobs: | |
fi | ||
- name: Login to GitHub Container Registry | ||
uses: docker/login-action@v2.2.0 | ||
uses: docker/login-action@v3.0.0 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.repository_owner }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Build base image | ||
uses: home-assistant/builder@2023.08.0 | ||
uses: home-assistant/builder@2023.09.0 | ||
with: | ||
args: | | ||
$BUILD_ARGS \ | ||
--target /data/machine \ | ||
--cosign \ | ||
--machine "${{ needs.init.outputs.version }}=${{ matrix.machine }}" | ||
env: | ||
CAS_API_KEY: ${{ secrets.CAS_TOKEN }} | ||
publish_ha: | ||
name: Publish version files | ||
|
@@ -293,7 +289,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout the repository | ||
uses: actions/checkout@v3.5.3 | ||
uses: actions/checkout@v4.1.1 | ||
|
||
- name: Initialize git | ||
uses: home-assistant/actions/helpers/git-init@master | ||
|
@@ -331,21 +327,21 @@ jobs: | |
id-token: write | ||
steps: | ||
- name: Checkout the repository | ||
uses: actions/checkout@v3.5.3 | ||
uses: actions/checkout@v4.1.1 | ||
|
||
- name: Install Cosign | ||
uses: sigstore/cosign-installer@v3.1.1 | ||
uses: sigstore/cosign-installer@v3.2.0 | ||
with: | ||
cosign-release: "v2.0.2" | ||
|
||
- name: Login to DockerHub | ||
uses: docker/login-action@v2.2.0 | ||
uses: docker/login-action@v3.0.0 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
|
||
- name: Login to GitHub Container Registry | ||
uses: docker/login-action@v2.2.0 | ||
uses: docker/login-action@v3.0.0 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.repository_owner }} | ||
|
Oops, something went wrong.