Skip to content

Commit 3ad9e06

Browse files
committed
ci: update java every day
1 parent daaca1e commit 3ad9e06

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

.github/renovate.json5

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,9 @@
1616
packageRules: [
1717
{
1818
// remember to sync with update-java
19-
// every Wednesday at 4am
20-
schedule: ["* 4 * * 3"],
19+
// Run every day at 4am
20+
schedule: ["* 4 * * *"],
2121
matchManagers: ["gradle", "gradle-wrapper"],
22-
matchUpdateTypes: ["minor", "patch", "pin"],
2322
enabled: false,
2423
},
2524
{

.github/workflows/update-java.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# SPDX-FileCopyrightText: Copyright © 2024 Caleb Cushing
1+
# SPDX-FileCopyrightText: Copyright © 2024 - 2025 Caleb Cushing
22
#
33
# SPDX-License-Identifier: CC0-1.0
44

55
name: update-java
66
on:
77
schedule:
8-
- cron: "0 3 * * 0"
8+
- cron: "0 3 * * *"
99
push:
1010
branches:
1111
- ci/auto-update-java
@@ -45,7 +45,7 @@ jobs:
4545
id: git_status
4646
- uses: actions/setup-python@v5
4747
if: ${{ contains(steps.git_status.outputs.stdout, 'gradle/wrapper/') }}
48-
- run: pip install reuse
48+
- run: pip install -r requirements.txt
4949
if: ${{ contains(steps.git_status.outputs.stdout, 'gradle/wrapper/') }}
5050
- run: |
5151
reuse annotate --license 'Apache-2.0' --copyright 'Gradle, Inc' \

0 commit comments

Comments
 (0)