-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
42 additions
and
42 deletions.
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
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 |
---|---|---|
|
@@ -100,7 +100,7 @@ jobs: | |
- name: Checkout | ||
uses: actions/[email protected] | ||
- name: Self-hosted Renovate | ||
uses: renovatebot/[email protected].2 | ||
uses: renovatebot/[email protected].3 | ||
with: | ||
docker-cmd-file: .github/renovate-entrypoint.sh | ||
docker-user: root | ||
|
@@ -143,7 +143,7 @@ jobs: | |
- name: Checkout | ||
uses: actions/[email protected] | ||
- name: Self-hosted Renovate | ||
uses: renovatebot/[email protected].2 | ||
uses: renovatebot/[email protected].3 | ||
with: | ||
token: ${{ secrets.RENOVATE_TOKEN }} | ||
docker-volumes: | | ||
|
@@ -194,7 +194,7 @@ jobs: | |
- name: Checkout | ||
uses: actions/[email protected] | ||
- name: Self-hosted Renovate | ||
uses: renovatebot/[email protected].2 | ||
uses: renovatebot/[email protected].3 | ||
with: | ||
renovate-image: myproxyhub.domain.com/renovate/renovate | ||
token: ${{ secrets.RENOVATE_TOKEN }} | ||
|
@@ -211,7 +211,7 @@ jobs: | |
- name: Checkout | ||
uses: actions/[email protected] | ||
- name: Self-hosted Renovate | ||
uses: renovatebot/[email protected].2 | ||
uses: renovatebot/[email protected].3 | ||
with: | ||
token: ${{ secrets.RENOVATE_TOKEN }} | ||
``` | ||
|
@@ -222,7 +222,7 @@ The Renovate version to use. | |
If omitted the action will use the [`default version`](./action.yml#L28) Docker tag. | ||
Check [the available tags on Docker Hub](https://hub.docker.com/r/renovate/renovate/tags). | ||
|
||
This sample will use `ghcr.io/renovatebot/renovate:39.9.5` image. | ||
This sample will use `ghcr.io/renovatebot/renovate:39.19.1` image. | ||
|
||
```yml | ||
.... | ||
|
@@ -233,9 +233,9 @@ jobs: | |
- name: Checkout | ||
uses: actions/[email protected] | ||
- name: Self-hosted Renovate | ||
uses: renovatebot/[email protected].2 | ||
uses: renovatebot/[email protected].3 | ||
with: | ||
renovate-version: 39.9.5 | ||
renovate-version: 39.19.1 | ||
token: ${{ secrets.RENOVATE_TOKEN }} | ||
``` | ||
|
||
|
@@ -250,7 +250,7 @@ jobs: | |
- name: Checkout | ||
uses: actions/[email protected] | ||
- name: Self-hosted Renovate | ||
uses: renovatebot/[email protected].2 | ||
uses: renovatebot/[email protected].3 | ||
with: | ||
renovate-version: full | ||
token: ${{ secrets.RENOVATE_TOKEN }} | ||
|
@@ -285,7 +285,7 @@ jobs: | |
- name: Checkout | ||
uses: actions/[email protected] | ||
- name: Self-hosted Renovate | ||
uses: renovatebot/[email protected].2 | ||
uses: renovatebot/[email protected].3 | ||
with: | ||
configurationFile: example/renovate-config.js | ||
token: ${{ secrets.RENOVATE_TOKEN }} | ||
|
@@ -298,7 +298,7 @@ If you want to use the Renovate Action on a GitHub Enterprise instance you have | |
```yml | ||
.... | ||
- name: Self-hosted Renovate | ||
uses: renovatebot/[email protected].2 | ||
uses: renovatebot/[email protected].3 | ||
with: | ||
configurationFile: example/renovate-config.js | ||
token: ${{ secrets.RENOVATE_TOKEN }} | ||
|
@@ -343,7 +343,7 @@ jobs: | |
uses: actions/[email protected] | ||
- name: Self-hosted Renovate | ||
uses: renovatebot/[email protected].2 | ||
uses: renovatebot/[email protected].3 | ||
with: | ||
configurationFile: example/renovate-config.js | ||
token: '${{ steps.get_token.outputs.token }}' | ||
|
@@ -358,7 +358,7 @@ For example: | |
|
||
```yaml | ||
- name: Self-hosted Renovate | ||
uses: renovatebot/[email protected].2 | ||
uses: renovatebot/[email protected].3 | ||
with: | ||
token: '${{ steps.get_token.outputs.token }}' | ||
env: | ||
|
@@ -382,7 +382,7 @@ For example if you wish to pass through some credentials for a [host rule](https | |
- name: Checkout | ||
uses: actions/[email protected] | ||
- name: Self-hosted Renovate | ||
uses: renovatebot/[email protected].2 | ||
uses: renovatebot/[email protected].3 | ||
with: | ||
configurationFile: example/renovate-config.js | ||
token: ${{ secrets.RENOVATE_TOKEN }} | ||
|
@@ -419,7 +419,7 @@ jobs: | |
- name: Checkout | ||
uses: actions/[email protected] | ||
- name: Self-hosted Renovate | ||
uses: renovatebot/[email protected].2 | ||
uses: renovatebot/[email protected].3 | ||
with: | ||
configurationFile: example/renovate-config.js | ||
token: ${{ secrets.RENOVATE_TOKEN }} | ||
|
@@ -510,11 +510,11 @@ jobs: | |
sudo chown -R 12021:0 /tmp/renovate/ | ||
ls -R $cache_dir | ||
- uses: renovatebot/[email protected].2 | ||
- uses: renovatebot/[email protected].3 | ||
with: | ||
configurationFile: renovate.json5 | ||
token: ${{ secrets.RENOVATE_TOKEN }} | ||
renovate-version: 39.9.5 | ||
renovate-version: 39.19.1 | ||
env: | ||
# This enables the cache -- if this is set, it's not necessary to add it to renovate.json. | ||
RENOVATE_REPOSITORY_CACHE: ${{ github.event.inputs.repoCache || 'enabled' }} | ||
|
@@ -548,7 +548,7 @@ To enable debug logging, add the environment variable `LOG_LEVEL: 'debug'` to th | |
```yml | ||
- name: Self-hosted Renovate | ||
uses: renovatebot/[email protected].2 | ||
uses: renovatebot/[email protected].3 | ||
with: | ||
configurationFile: example/renovate-config.js | ||
token: ${{ secrets.RENOVATE_TOKEN }} | ||
|
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.