From 9895ba13be3883a37d2ea69f01fe6d21a39ac795 Mon Sep 17 00:00:00 2001 From: Michael Kriese Date: Thu, 16 Jul 2020 12:18:00 +0200 Subject: [PATCH 1/2] docs: update readme (#144) --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 515efa4d..0d41cd2c 100644 --- a/README.md +++ b/README.md @@ -54,6 +54,8 @@ Note that the [`GITHUB_TOKEN`](https://help.github.com/en/actions/configuring-an This example uses a personal access token and will run every 15 minutes. The personal access token is configured as a GitHub secret named `RENOVATE_TOKEN`. This example uses the [`example/config.js`](./example/config.js) file as configuration. You can also see a live example of this action in my [github-renovate](https://github.com/vidavidorra/github-renovate) repository, which also includes a more [advanced configuration](https://github.com/vidavidorra/github-renovate/blob/master/src/config.js) for updating GitHub Action workflows. +**Remark** Update the action version to the most current, see [here](https://github.com/renovatebot/github-action/releases/latest) for latest release. + ```yml name: Renovate on: @@ -68,7 +70,7 @@ jobs: - name: Checkout uses: actions/checkout@v2.0.0 - name: Self-hosted Renovate - uses: renovatebot/github-action@v1.0.0 + uses: renovatebot/github-action@v21.30.0 with: configurationFile: example/renovate-config.js token: ${{ secrets.RENOVATE_TOKEN }} From 9f837640e2dead818dacd3aa7c92bf0bd83b11bd Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 16 Jul 2020 17:00:25 +0000 Subject: [PATCH 2/2] fix(deps): update renovate/renovate docker tag to v21.31.2 (#145) Co-authored-by: Renovate Bot --- src/docker.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/docker.ts b/src/docker.ts index 799c2c93..81c1c5fc 100644 --- a/src/docker.ts +++ b/src/docker.ts @@ -1,7 +1,7 @@ class Docker { readonly repository = 'renovate/renovate'; // renovate: datasource=docker depName=renovate/renovate versioning=docker - readonly tag = '21.30.0-slim'; + readonly tag = '21.31.2-slim'; readonly tagSuffix = '-slim'; image(): string {