mirror of
https://github.com/renovatebot/github-action.git
synced 2025-12-16 08:52:35 +00:00
Merge branch 'main' into validate-cmd-file
This commit is contained in:
commit
6bc5e9d4be
4 changed files with 301 additions and 250 deletions
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
|
|
@ -11,7 +11,7 @@ concurrency:
|
|||
|
||||
env:
|
||||
NODE_VERSION: 20
|
||||
RENOVATE_VERSION: 37.183.0 # renovate: datasource=docker depName=renovate packageName=ghcr.io/renovatebot/renovate
|
||||
RENOVATE_VERSION: 37.203.3 # renovate: datasource=docker depName=renovate packageName=ghcr.io/renovatebot/renovate
|
||||
|
||||
jobs:
|
||||
commitlint:
|
||||
|
|
|
|||
32
README.md
32
README.md
|
|
@ -101,7 +101,7 @@ jobs:
|
|||
- name: Checkout
|
||||
uses: actions/checkout@v4.1.1
|
||||
- name: Self-hosted Renovate
|
||||
uses: renovatebot/github-action@v40.0.3
|
||||
uses: renovatebot/github-action@v40.1.0
|
||||
with:
|
||||
docker-cmd-file: .github/renovate-entrypoint.sh
|
||||
docker-user: root
|
||||
|
|
@ -131,7 +131,7 @@ jobs:
|
|||
- name: Checkout
|
||||
uses: actions/checkout@v4.1.1
|
||||
- name: Self-hosted Renovate
|
||||
uses: renovatebot/github-action@v40.0.3
|
||||
uses: renovatebot/github-action@v40.1.0
|
||||
with:
|
||||
token: ${{ secrets.RENOVATE_TOKEN }}
|
||||
docker-volumes: |
|
||||
|
|
@ -183,7 +183,7 @@ jobs:
|
|||
- name: Checkout
|
||||
uses: actions/checkout@v4.1.1
|
||||
- name: Self-hosted Renovate
|
||||
uses: renovatebot/github-action@v40.0.3
|
||||
uses: renovatebot/github-action@v40.1.0
|
||||
with:
|
||||
renovate-image: myproxyhub.domain.com/renovate/renovate
|
||||
token: ${{ secrets.RENOVATE_TOKEN }}
|
||||
|
|
@ -200,7 +200,7 @@ jobs:
|
|||
- name: Checkout
|
||||
uses: actions/checkout@v4.1.1
|
||||
- name: Self-hosted Renovate
|
||||
uses: renovatebot/github-action@v40.0.3
|
||||
uses: renovatebot/github-action@v40.1.0
|
||||
with:
|
||||
token: ${{ secrets.RENOVATE_TOKEN }}
|
||||
```
|
||||
|
|
@ -211,7 +211,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:37.183.0` image.
|
||||
This sample will use `ghcr.io/renovatebot/renovate:37.198.0` image.
|
||||
|
||||
```yml
|
||||
....
|
||||
|
|
@ -222,9 +222,9 @@ jobs:
|
|||
- name: Checkout
|
||||
uses: actions/checkout@v4.1.1
|
||||
- name: Self-hosted Renovate
|
||||
uses: renovatebot/github-action@v40.0.3
|
||||
uses: renovatebot/github-action@v40.1.0
|
||||
with:
|
||||
renovate-version: 37.183.0
|
||||
renovate-version: 37.198.0
|
||||
token: ${{ secrets.RENOVATE_TOKEN }}
|
||||
```
|
||||
|
||||
|
|
@ -239,7 +239,7 @@ jobs:
|
|||
- name: Checkout
|
||||
uses: actions/checkout@v4.1.1
|
||||
- name: Self-hosted Renovate
|
||||
uses: renovatebot/github-action@v40.0.3
|
||||
uses: renovatebot/github-action@v40.1.0
|
||||
with:
|
||||
renovate-version: full
|
||||
token: ${{ secrets.RENOVATE_TOKEN }}
|
||||
|
|
@ -274,7 +274,7 @@ jobs:
|
|||
- name: Checkout
|
||||
uses: actions/checkout@v4.1.1
|
||||
- name: Self-hosted Renovate
|
||||
uses: renovatebot/github-action@v40.0.3
|
||||
uses: renovatebot/github-action@v40.1.0
|
||||
with:
|
||||
configurationFile: example/renovate-config.js
|
||||
token: ${{ secrets.RENOVATE_TOKEN }}
|
||||
|
|
@ -287,7 +287,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.0.3
|
||||
uses: renovatebot/github-action@v40.1.0
|
||||
with:
|
||||
configurationFile: example/renovate-config.js
|
||||
token: ${{ secrets.RENOVATE_TOKEN }}
|
||||
|
|
@ -332,7 +332,7 @@ jobs:
|
|||
uses: actions/checkout@v4.1.1
|
||||
|
||||
- name: Self-hosted Renovate
|
||||
uses: renovatebot/github-action@v40.0.3
|
||||
uses: renovatebot/github-action@v40.1.0
|
||||
with:
|
||||
configurationFile: example/renovate-config.js
|
||||
token: '${{ steps.get_token.outputs.token }}'
|
||||
|
|
@ -355,7 +355,7 @@ For example if you wish to pass through some credentials for a [host rule](https
|
|||
- name: Checkout
|
||||
uses: actions/checkout@v4.1.1
|
||||
- name: Self-hosted Renovate
|
||||
uses: renovatebot/github-action@v40.0.3
|
||||
uses: renovatebot/github-action@v40.1.0
|
||||
with:
|
||||
configurationFile: example/renovate-config.js
|
||||
token: ${{ secrets.RENOVATE_TOKEN }}
|
||||
|
|
@ -392,7 +392,7 @@ jobs:
|
|||
- name: Checkout
|
||||
uses: actions/checkout@v4.1.1
|
||||
- name: Self-hosted Renovate
|
||||
uses: renovatebot/github-action@v40.0.3
|
||||
uses: renovatebot/github-action@v40.1.0
|
||||
with:
|
||||
configurationFile: example/renovate-config.js
|
||||
token: ${{ secrets.RENOVATE_TOKEN }}
|
||||
|
|
@ -483,11 +483,11 @@ jobs:
|
|||
sudo chown -R runneradmin:root /tmp/renovate/
|
||||
ls -R $cache_dir
|
||||
|
||||
- uses: renovatebot/github-action@v40.0.3
|
||||
- uses: renovatebot/github-action@v40.1.0
|
||||
with:
|
||||
configurationFile: renovate.json5
|
||||
token: ${{ secrets.RENOVATE_TOKEN }}
|
||||
renovate-version: 37.183.0
|
||||
renovate-version: 37.198.0
|
||||
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' }}
|
||||
|
|
@ -521,7 +521,7 @@ To enable debug logging, add the environment variable `LOG_LEVEL: 'debug'` to th
|
|||
|
||||
```yml
|
||||
- name: Self-hosted Renovate
|
||||
uses: renovatebot/github-action@v40.0.3
|
||||
uses: renovatebot/github-action@v40.1.0
|
||||
with:
|
||||
configurationFile: example/renovate-config.js
|
||||
token: ${{ secrets.RENOVATE_TOKEN }}
|
||||
|
|
|
|||
18
package.json
18
package.json
|
|
@ -36,31 +36,31 @@
|
|||
"@actions/exec": "1.1.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@commitlint/cli": "18.6.0",
|
||||
"@commitlint/config-conventional": "18.6.0",
|
||||
"@commitlint/cli": "18.6.1",
|
||||
"@commitlint/config-conventional": "18.6.2",
|
||||
"@semantic-release/git": "10.0.1",
|
||||
"@semantic-release/github": "9.2.6",
|
||||
"@semantic-release/npm": "11.0.2",
|
||||
"@tsconfig/node20": "20.1.2",
|
||||
"@types/node": "20.11.16",
|
||||
"@typescript-eslint/eslint-plugin": "6.20.0",
|
||||
"@typescript-eslint/parser": "6.20.0",
|
||||
"@types/node": "20.11.17",
|
||||
"@typescript-eslint/eslint-plugin": "6.21.0",
|
||||
"@typescript-eslint/parser": "6.21.0",
|
||||
"@vercel/ncc": "0.38.1",
|
||||
"conventional-changelog-conventionalcommits": "7.0.2",
|
||||
"eslint": "8.56.0",
|
||||
"eslint-config-prettier": "9.1.0",
|
||||
"eslint-plugin-json": "3.1.0",
|
||||
"husky": "9.0.10",
|
||||
"lint-staged": "15.2.1",
|
||||
"husky": "9.0.11",
|
||||
"lint-staged": "15.2.2",
|
||||
"npm-run-all2": "6.1.2",
|
||||
"prettier": "3.2.5",
|
||||
"prettier-plugin-packagejson": "2.4.10",
|
||||
"rimraf": "5.0.5",
|
||||
"semantic-release": "23.0.0",
|
||||
"semantic-release": "23.0.2",
|
||||
"ts-node": "10.9.2",
|
||||
"typescript": "5.3.3"
|
||||
},
|
||||
"packageManager": "pnpm@8.15.1",
|
||||
"packageManager": "pnpm@8.15.2",
|
||||
"engines": {
|
||||
"node": ">=20.9.0",
|
||||
"pnpm": "^8.0.0"
|
||||
|
|
|
|||
499
pnpm-lock.yaml
generated
499
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue