Skip to content

Commit

Permalink
Added Update Gradle Wrapper Action
Browse files Browse the repository at this point in the history
  • Loading branch information
siarhei-luskanau committed Oct 5, 2024
1 parent 2e79db6 commit 1d5dc47
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/actionsBuild.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: actionsBuildApp

on: [ push ]
on:
push:
pull_request:
branches: [ "main" ]

env:
JAVA_VERSION: 21
Expand Down
21 changes: 21 additions & 0 deletions .github/workflows/update-gradle-wrapper.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Update Gradle Wrapper

on:
schedule:
- cron: "0 0 * * *"

jobs:
update-gradle-wrapper:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- uses: actions/setup-java@v4
if: ${{ matrix.os != 'self-hosted' }}
with:
distribution: 'temurin'
java-version: '21'

- name: Update Gradle Wrapper
uses: gradle-update/update-gradle-wrapper-action@v2

0 comments on commit 1d5dc47

Please sign in to comment.