Skip to content

Commit 596c051

Browse files
committed
Fixed renovate validator.
1 parent 8beb7dd commit 596c051

5 files changed

Lines changed: 16 additions & 4 deletions

File tree

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,7 @@ jobs:
410410
# Add RENOVATE_TOKEN as an environment variable with GitHub access token in UI.
411411
deps-updates:
412412
docker:
413-
- image: renovate/renovate:40.8.2
413+
- image: renovate/renovate:40.36.8
414414
environment:
415415
RENOVATE_PLATFORM: 'github'
416416
RENOVATE_AUTODISCOVER: false

.github/workflows/deps-updates.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,12 @@ jobs:
1111
- name: Checkout
1212
uses: actions/checkout@v4.2.2
1313

14-
- uses: suzuki-shunsuke/github-action-renovate-config-validator@v1.1.1
14+
- uses: actions/setup-node@v4.4.0
1515
with:
1616
node-version: 22.13.1
1717

18+
- uses: suzuki-shunsuke/github-action-renovate-config-validator@v1.1.1
19+
1820
- name: Check Renovate Token
1921
id: check-token
2022
run: |

.github/workflows/vortex-test-common.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,8 @@ jobs:
6161
6262
- name: Setup Node.js
6363
uses: actions/setup-node@v4
64+
with:
65+
node-version: 22.13.1
6466

6567
- name: Install dependencies
6668
run: yarn install --frozen-lockfile
@@ -72,6 +74,12 @@ jobs:
7274
./tests/lint.dockerfiles.sh
7375
working-directory: .vortex
7476

77+
# Special case to validate Renovate configuration with the same action
78+
# as used in the Renovate workflow to ensure that they both use the same
79+
# version.
80+
- name: Validate Renovate configuration
81+
uses: suzuki-shunsuke/github-action-renovate-config-validator@v1.1.1
82+
7583
- name: Run tests
7684
run: ./tests/test.common.sh
7785
working-directory: .vortex

.vortex/installer/tests/Fixtures/install/_baseline/.github/workflows/deps-updates.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,12 @@ jobs:
1111
- name: Checkout
1212
uses: actions/checkout@__VERSION__
1313

14-
- uses: suzuki-shunsuke/github-action-renovate-config-validator@__VERSION__
14+
- uses: actions/setup-node@__VERSION__
1515
with:
1616
node-version: 22.13.1
1717

18+
- uses: suzuki-shunsuke/github-action-renovate-config-validator@__VERSION__
19+
1820
- name: Check Renovate Token
1921
id: check-token
2022
run: |

.vortex/installer/tests/Fixtures/install/names/.github/workflows/deps-updates.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@@ -37,4 +37,4 @@
1+
@@ -39,4 +39,4 @@
22
RENOVATE_DEPENDENCY_DASHBOARD_TITLE: 'Renovate Dependency Dashboard (self-hosted) by GitHub Actions'
33
RENOVATE_DEPENDENCY_DASHBOARD: ${{ vars.RENOVATE_DEPENDENCY_DASHBOARD || 'false' }}
44
RENOVATE_DRY_RUN: ${{ vars.RENOVATE_DRY_RUN || 'false' }}

0 commit comments

Comments
 (0)