Skip to content

Commit 7a19454

Browse files
authored
Merge pull request #201 from OctopusDeploy/sjc/update-renovate-version
Update renovate, run in dry run
2 parents 40116be + a8f7ad4 commit 7a19454

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

.github/workflows/update-dependencies.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,24 @@ on:
44
- cron: "0 0 * * *"
55

66
workflow_dispatch:
7+
inputs:
8+
dryRun:
9+
type: boolean
10+
required: false
11+
default: false
12+
description: Dry run (don't create PRs)
713
jobs:
814
renovate:
915
runs-on: ubuntu-latest
1016
steps:
1117
- name: Checkout
1218
uses: actions/checkout@v2.4.2
1319

14-
# Note: Renovate runs within it's own docker container and doesn't
15-
# know really anything about which version of tooling are in use e.g. pnpm
16-
# it just uses the latest version. This could potentially cause issues if
17-
# a new major version of pnpm gets released, so we have a constraint in
18-
# the renovate-config.js file to restrict it to use v6 to align with us.
1920
- name: Self-hosted Renovate
20-
uses: renovatebot/github-action@v29.36.2
21+
uses: renovatebot/github-action@v39.2.4
2122
with:
2223
configurationFile: renovate-config.js
2324
token: ${{ secrets.RENOVATE_GITHUB_TOKEN }}
2425
env:
2526
LOG_LEVEL: debug
27+
RENOVATE_DRY_RUN: ${{ inputs.dryRun && 'full' || null }}

0 commit comments

Comments
 (0)