From 88f155c53092803822814048eb60a713415ef3b9 Mon Sep 17 00:00:00 2001 From: Andrew Hammond <445764+ahammond@users.noreply.github.com> Date: Tue, 26 Mar 2024 17:45:27 -0700 Subject: [PATCH] chore: update renovate version to use node20 [INFRA-14946] https://github.com/renovatebot/github-action/releases/tag/v40.0.0 --- .github/workflows/renovate.yml | 4 ++-- src/renovate-workflow.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/renovate.yml b/.github/workflows/renovate.yml index a66e8b92..25c9d06b 100644 --- a/.github/workflows/renovate.yml +++ b/.github/workflows/renovate.yml @@ -26,9 +26,9 @@ jobs: contents: read steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Self-hosted Renovate - uses: renovatebot/github-action@v39.0.1 + uses: renovatebot/github-action@v40.1.6 if: (github.event_name != 'issues' && github.event_name != 'pull_request') || github.actor != 'cu-infra-svc-git' with: configurationFile: renovate.json5 diff --git a/src/renovate-workflow.ts b/src/renovate-workflow.ts index 38cf3431..6f2ace5e 100644 --- a/src/renovate-workflow.ts +++ b/src/renovate-workflow.ts @@ -47,11 +47,11 @@ export module renovateWorkflow { steps: [ { name: 'Checkout', - uses: 'actions/checkout@v3', + uses: 'actions/checkout@v4', }, { name: 'Self-hosted Renovate', - uses: 'renovatebot/github-action@v39.0.1', // We might want to un-pin this or figure out a renovate process for it. + uses: 'renovatebot/github-action@v40.1.6', // We might want to un-pin this or figure out a renovate process for it. // Skip running renovate in a loop when renovate updates the dependency dashboard issue and re-triggers this workflow if: `(github.event_name != 'issues' && github.event_name != 'pull_request') || github.actor != '${RENOVATE_GITHUB_USERNAME}'`, with: {