ViaProxy/.github/workflows/update-gradle-wrapper.yml
Kichura d126653b1d
Some checks are pending
build-docker / build (push) Waiting to run
build / build (push) Waiting to run
Updated github actions to use ubuntu to 24.04 (#297)
2024-09-28 23:09:52 +02:00

20 lines
488 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
- 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