19
.github/workflows/versions.yaml
vendored
19
.github/workflows/versions.yaml
vendored
@@ -1,19 +0,0 @@
|
||||
name: Sync component versions
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: '18 8 * * *'
|
||||
|
||||
jobs:
|
||||
versions:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
with:
|
||||
persist-credentials: false
|
||||
- uses: actions/setup-go@v2
|
||||
- uses: romoh/dependencies-autoupdate@v1.1
|
||||
with:
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
update-command: "'scripts/generate-versions.sh $token > jsonnet/kube-prometheus/versions.json'"
|
||||
on-changes-command: "'make --always-make generate'"
|
||||
@@ -11,7 +11,12 @@ get_latest_version() {
|
||||
# Get component version from version file
|
||||
get_current_version() {
|
||||
echo >&2 "Reading currently used version of ${1}"
|
||||
jq -r ".${1}" "$VERSION_FILE"
|
||||
v=$(jq -r ".${1}" "$VERSION_FILE")
|
||||
if [ "${v}" == "" ]; then
|
||||
echo >&2 "Couldn't read version of ${1} from $VERSION_FILE"
|
||||
exit 1
|
||||
fi
|
||||
echo "$v"
|
||||
}
|
||||
|
||||
# Get version from online source and filter out unstable releases. In case of unstable release use what is set in version file
|
||||
@@ -32,7 +37,7 @@ convert_to_camel_case() {
|
||||
}
|
||||
|
||||
# File is used to read current versions
|
||||
VERSION_FILE="jsonnet/kube-prometheus/versions.json"
|
||||
VERSION_FILE="$(pwd)/jsonnet/kube-prometheus/versions.json"
|
||||
|
||||
# token can be passed as `GITHUB_TOKEN` variable or passed as first argument
|
||||
GITHUB_TOKEN=${GITHUB_TOKEN:-${1}}
|
||||
|
||||
Reference in New Issue
Block a user