mirror of
https://github.com/ViaVersion/ViaProxy.git
synced 2025-01-06 19:09:02 +01:00
23 lines
539 B
YAML
23 lines
539 B
YAML
name: update-gradle-wrapper
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: "0 0 * * 0"
|
|
|
|
jobs:
|
|
update-gradle-wrapper:
|
|
runs-on: ubuntu-24.04
|
|
steps:
|
|
- name: Checkout Repository
|
|
uses: actions/checkout@v4
|
|
with:
|
|
persist-credentials: false
|
|
- name: Set up JDK 21
|
|
uses: actions/setup-java@v4
|
|
with:
|
|
distribution: temurin
|
|
java-version: 21
|
|
check-latest: true
|
|
- name: Update Gradle Wrapper
|
|
uses: gradle-update/update-gradle-wrapper-action@v2
|