Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump gradle/wrapper-validation-action from 2.0.0 to 2.1.1 #95

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/Gradle CI.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Gradle CI

# Controls when the action will run.
# Controls when the action will run.
on:
# Triggers the workflow on push and pull request events but only for the master branch
push:
Expand All @@ -18,7 +18,7 @@ jobs:
build:

name: Gradle-Build

# The type of runner that the job will run on
runs-on: ubuntu-latest

Expand All @@ -27,18 +27,18 @@ jobs:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Checkout
uses: actions/checkout@v4

# Setup JDK
- name: Setup Java JDK
uses: actions/setup-java@v4
with:
distribution: 'microsoft'
java-version: 11
cache: 'gradle'

# Validate Gradle Wrapper
- name: Gradle Wrapper Validation
uses: gradle/wrapper-validation-action@v2.0.0
uses: gradle/wrapper-validation-action@v2

# Build
- name: Make gradlew executable
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/Release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
# Checkout repository
- name: Checkout
uses: actions/checkout@v4

# Get tag version from ref
- name: Get tag version
id: vars
Expand All @@ -34,7 +34,7 @@ jobs:

# Validate Gradle Wrapper
- name: Gradle Wrapper Validation
uses: gradle/wrapper-validation-action@v2.0.0
uses: gradle/wrapper-validation-action@v2

# Build
- name: Make gradlew executable
Expand Down