Skip to content

Commit

Permalink
git_pull: Bump CLI & Base image (home-assistant#1991)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
frenck authored Apr 29, 2021
1 parent 2c56d9c commit b69f1b6
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 7 deletions.
6 changes: 6 additions & 0 deletions git_pull/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# 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

- Update Home Assistant CLI to 4.11.0
Expand Down
12 changes: 6 additions & 6 deletions git_pull/build.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"build_from": {
"aarch64": "homeassistant/aarch64-base:3.11",
"amd64": "homeassistant/amd64-base:3.11",
"armhf": "homeassistant/armhf-base:3.11",
"armv7": "homeassistant/armv7-base:3.11",
"i386": "homeassistant/i386-base:3.11"
"aarch64": "ghcr.io/home-assistant/aarch64-base:3.13",
"amd64": "ghcr.io/home-assistant/amd64-base:3.13",
"armhf": "ghcr.io/home-assistant/armhf-base:3.13",
"armv7": "ghcr.io/home-assistant/armv7-base:3.13",
"i386": "ghcr.io/home-assistant/i386-base:3.13"
},
"args": {
"CLI_VERSION": "4.11.0"
"CLI_VERSION": "4.12.1"
}
}
2 changes: 1 addition & 1 deletion git_pull/config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Git pull",
"version": "7.12.2",
"version": "7.13.0",
"slug": "git_pull",
"description": "Simple git pull to update the local configuration",
"url": "https://github.com/home-assistant/hassio-addons/tree/master/git_pull",
Expand Down
1 change: 1 addition & 0 deletions git_pull/data/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ password=${DEPLOYMENT_PASSWORD}

# Use git commands to write the credentials to ~/.git-credentials
echo "[Info] Saving git credentials to /tmp/git-credentials"
# shellcheck disable=SC2259
git credential fill | git credential approve <<< "$cred_data"
fi
}
Expand Down

0 comments on commit b69f1b6

Please sign in to comment.