Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: renovatebot/github-action
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v41.0.14
Choose a base ref
...
head repository: renovatebot/github-action
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v41.0.15
Choose a head ref
Loading
Showing with 153 additions and 161 deletions.
  1. +2 −2 .github/actions/setup-node/action.yml
  2. +1 −1 .github/workflows/build.yml
  3. +8 −8 package.json
  4. +142 −150 pnpm-lock.yaml
4 changes: 2 additions & 2 deletions .github/actions/setup-node/action.yml
Original file line number Diff line number Diff line change
@@ -18,7 +18,7 @@ runs:
}}' >> "$GITHUB_ENV"
- name: ♻️ Restore `node_modules`
uses: actions/cache/restore@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
uses: actions/cache/restore@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
id: node-modules-restore
with:
path: node_modules
@@ -53,7 +53,7 @@ runs:

- name: ♻️ Write `node_modules` cache
if: inputs.save-cache == 'true' && env.CACHE_HIT != 'true'
uses: actions/cache/save@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
uses: actions/cache/save@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
with:
path: node_modules
key: ${{ env.CACHE_KEY }}
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@ concurrency:
cancel-in-progress: true

env:
RENOVATE_VERSION: 39.178.1 # renovate: datasource=docker depName=renovate packageName=ghcr.io/renovatebot/renovate
RENOVATE_VERSION: 39.185.0 # renovate: datasource=docker depName=renovate packageName=ghcr.io/renovatebot/renovate

jobs:
prepare:
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "github-action",
"version": "41.0.14",
"version": "41.0.15",
"private": true,
"description": "GitHub Action to run Renovate self-hosted.",
"homepage": "https://github.com/renovatebot/github-action#readme",
@@ -39,7 +39,7 @@
"devDependencies": {
"@commitlint/cli": "19.7.1",
"@commitlint/config-conventional": "19.7.1",
"@eslint/js": "9.20.0",
"@eslint/js": "9.21.0",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "11.0.1",
"@semantic-release/npm": "12.0.1",
@@ -49,19 +49,19 @@
"@types/node": "20.17.19",
"conventional-changelog-conventionalcommits": "8.0.0",
"esbuild": "0.25.0",
"eslint": "9.20.1",
"eslint": "9.21.0",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-json": "4.0.1",
"globals": "15.15.0",
"globals": "16.0.0",
"husky": "9.1.7",
"lint-staged": "15.4.3",
"npm-run-all2": "7.0.2",
"prettier": "3.5.1",
"prettier-plugin-packagejson": "2.5.8",
"prettier": "3.5.3",
"prettier-plugin-packagejson": "2.5.10",
"rimraf": "6.0.1",
"semantic-release": "24.2.3",
"typescript": "5.7.3",
"typescript-eslint": "8.24.0"
"typescript": "5.8.2",
"typescript-eslint": "8.24.1"
},
"packageManager": "pnpm@10.4.1",
"engines": {
Loading