mirror of
https://github.com/renovatebot/github-action.git
synced 2025-12-27 12:43:37 +00:00
Merge branch 'main' into docker-socket-host-path
This commit is contained in:
commit
b6d254360e
4 changed files with 448 additions and 430 deletions
54
README.md
54
README.md
|
|
@ -98,9 +98,9 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4.1.7
|
||||
uses: actions/checkout@v4.2.0
|
||||
- name: Self-hosted Renovate
|
||||
uses: renovatebot/github-action@v40.2.6
|
||||
uses: renovatebot/github-action@v40.2.10
|
||||
with:
|
||||
docker-cmd-file: .github/renovate-entrypoint.sh
|
||||
docker-user: root
|
||||
|
|
@ -141,9 +141,9 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4.1.7
|
||||
uses: actions/checkout@v4.2.0
|
||||
- name: Self-hosted Renovate
|
||||
uses: renovatebot/github-action@v40.2.6
|
||||
uses: renovatebot/github-action@v40.2.10
|
||||
with:
|
||||
token: ${{ secrets.RENOVATE_TOKEN }}
|
||||
docker-volumes: |
|
||||
|
|
@ -193,9 +193,9 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4.1.7
|
||||
uses: actions/checkout@v4.2.0
|
||||
- name: Self-hosted Renovate
|
||||
uses: renovatebot/github-action@v40.2.6
|
||||
uses: renovatebot/github-action@v40.2.10
|
||||
with:
|
||||
renovate-image: myproxyhub.domain.com/renovate/renovate
|
||||
token: ${{ secrets.RENOVATE_TOKEN }}
|
||||
|
|
@ -210,9 +210,9 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4.1.7
|
||||
uses: actions/checkout@v4.2.0
|
||||
- name: Self-hosted Renovate
|
||||
uses: renovatebot/github-action@v40.2.6
|
||||
uses: renovatebot/github-action@v40.2.10
|
||||
with:
|
||||
token: ${{ secrets.RENOVATE_TOKEN }}
|
||||
```
|
||||
|
|
@ -223,7 +223,7 @@ The Renovate version to use.
|
|||
If omitted the action will use the `latest` 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:38.39.6` image.
|
||||
This sample will use `ghcr.io/renovatebot/renovate:38.101.1` image.
|
||||
|
||||
```yml
|
||||
....
|
||||
|
|
@ -232,11 +232,11 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4.1.7
|
||||
uses: actions/checkout@v4.2.0
|
||||
- name: Self-hosted Renovate
|
||||
uses: renovatebot/github-action@v40.2.6
|
||||
uses: renovatebot/github-action@v40.2.10
|
||||
with:
|
||||
renovate-version: 38.39.6
|
||||
renovate-version: 38.101.1
|
||||
token: ${{ secrets.RENOVATE_TOKEN }}
|
||||
```
|
||||
|
||||
|
|
@ -249,9 +249,9 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4.1.7
|
||||
uses: actions/checkout@v4.2.0
|
||||
- name: Self-hosted Renovate
|
||||
uses: renovatebot/github-action@v40.2.6
|
||||
uses: renovatebot/github-action@v40.2.10
|
||||
with:
|
||||
renovate-version: full
|
||||
token: ${{ secrets.RENOVATE_TOKEN }}
|
||||
|
|
@ -284,9 +284,9 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4.1.7
|
||||
uses: actions/checkout@v4.2.0
|
||||
- name: Self-hosted Renovate
|
||||
uses: renovatebot/github-action@v40.2.6
|
||||
uses: renovatebot/github-action@v40.2.10
|
||||
with:
|
||||
configurationFile: example/renovate-config.js
|
||||
token: ${{ secrets.RENOVATE_TOKEN }}
|
||||
|
|
@ -299,7 +299,7 @@ If you want to use the Renovate Action on a GitHub Enterprise instance you have
|
|||
```yml
|
||||
....
|
||||
- name: Self-hosted Renovate
|
||||
uses: renovatebot/github-action@v40.2.6
|
||||
uses: renovatebot/github-action@v40.2.10
|
||||
with:
|
||||
configurationFile: example/renovate-config.js
|
||||
token: ${{ secrets.RENOVATE_TOKEN }}
|
||||
|
|
@ -341,10 +341,10 @@ jobs:
|
|||
repositories: 'repo1,repo2'
|
||||
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4.1.7
|
||||
uses: actions/checkout@v4.2.0
|
||||
|
||||
- name: Self-hosted Renovate
|
||||
uses: renovatebot/github-action@v40.2.6
|
||||
uses: renovatebot/github-action@v40.2.10
|
||||
with:
|
||||
configurationFile: example/renovate-config.js
|
||||
token: '${{ steps.get_token.outputs.token }}'
|
||||
|
|
@ -359,7 +359,7 @@ For example:
|
|||
|
||||
```yaml
|
||||
- name: Self-hosted Renovate
|
||||
uses: renovatebot/github-action@v40.2.6
|
||||
uses: renovatebot/github-action@v40.2.10
|
||||
with:
|
||||
token: '${{ steps.get_token.outputs.token }}'
|
||||
env:
|
||||
|
|
@ -381,9 +381,9 @@ For example if you wish to pass through some credentials for a [host rule](https
|
|||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4.1.7
|
||||
uses: actions/checkout@v4.2.0
|
||||
- name: Self-hosted Renovate
|
||||
uses: renovatebot/github-action@v40.2.6
|
||||
uses: renovatebot/github-action@v40.2.10
|
||||
with:
|
||||
configurationFile: example/renovate-config.js
|
||||
token: ${{ secrets.RENOVATE_TOKEN }}
|
||||
|
|
@ -418,9 +418,9 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4.1.7
|
||||
uses: actions/checkout@v4.2.0
|
||||
- name: Self-hosted Renovate
|
||||
uses: renovatebot/github-action@v40.2.6
|
||||
uses: renovatebot/github-action@v40.2.10
|
||||
with:
|
||||
configurationFile: example/renovate-config.js
|
||||
token: ${{ secrets.RENOVATE_TOKEN }}
|
||||
|
|
@ -511,11 +511,11 @@ jobs:
|
|||
sudo chown -R runneradmin:root /tmp/renovate/
|
||||
ls -R $cache_dir
|
||||
|
||||
- uses: renovatebot/github-action@v40.2.6
|
||||
- uses: renovatebot/github-action@v40.2.10
|
||||
with:
|
||||
configurationFile: renovate.json5
|
||||
token: ${{ secrets.RENOVATE_TOKEN }}
|
||||
renovate-version: 38.39.6
|
||||
renovate-version: 38.101.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' }}
|
||||
|
|
@ -549,7 +549,7 @@ To enable debug logging, add the environment variable `LOG_LEVEL: 'debug'` to th
|
|||
|
||||
```yml
|
||||
- name: Self-hosted Renovate
|
||||
uses: renovatebot/github-action@v40.2.6
|
||||
uses: renovatebot/github-action@v40.2.10
|
||||
with:
|
||||
configurationFile: example/renovate-config.js
|
||||
token: ${{ secrets.RENOVATE_TOKEN }}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue