git_pull: Bump CLI & Base image (#1991)

* Upgrade base image to Alpine 3.13

* ⬆️ Upgrades Home Assistant CLI to v4.12.1

* Supress shellcheck warning

* Bump version, update changelog

* Add additional note to changelog

* Supress on the correct line
This commit is contained in:
Franck Nijhof
2021-04-29 12:29:26 +02:00
committed by GitHub
parent 2c56d9c623
commit b69f1b63be
4 changed files with 14 additions and 7 deletions

View File

@@ -1,5 +1,11 @@
# Changelog # Changelog
## 7.13.0
- Update Home Assistant CLI to 4.12.1
- Upgrade base image to Alpine 3.13
- Supress a shellcheck warning happening in CI
## 7.12.2 ## 7.12.2
- Update Home Assistant CLI to 4.11.0 - Update Home Assistant CLI to 4.11.0

View File

@@ -1,12 +1,12 @@
{ {
"build_from": { "build_from": {
"aarch64": "homeassistant/aarch64-base:3.11", "aarch64": "ghcr.io/home-assistant/aarch64-base:3.13",
"amd64": "homeassistant/amd64-base:3.11", "amd64": "ghcr.io/home-assistant/amd64-base:3.13",
"armhf": "homeassistant/armhf-base:3.11", "armhf": "ghcr.io/home-assistant/armhf-base:3.13",
"armv7": "homeassistant/armv7-base:3.11", "armv7": "ghcr.io/home-assistant/armv7-base:3.13",
"i386": "homeassistant/i386-base:3.11" "i386": "ghcr.io/home-assistant/i386-base:3.13"
}, },
"args": { "args": {
"CLI_VERSION": "4.11.0" "CLI_VERSION": "4.12.1"
} }
} }

View File

@@ -1,6 +1,6 @@
{ {
"name": "Git pull", "name": "Git pull",
"version": "7.12.2", "version": "7.13.0",
"slug": "git_pull", "slug": "git_pull",
"description": "Simple git pull to update the local configuration", "description": "Simple git pull to update the local configuration",
"url": "https://github.com/home-assistant/hassio-addons/tree/master/git_pull", "url": "https://github.com/home-assistant/hassio-addons/tree/master/git_pull",

View File

@@ -108,6 +108,7 @@ password=${DEPLOYMENT_PASSWORD}
# Use git commands to write the credentials to ~/.git-credentials # Use git commands to write the credentials to ~/.git-credentials
echo "[Info] Saving git credentials to /tmp/git-credentials" echo "[Info] Saving git credentials to /tmp/git-credentials"
# shellcheck disable=SC2259
git credential fill | git credential approve <<< "$cred_data" git credential fill | git credential approve <<< "$cred_data"
fi fi
} }