Skip to content

Commit a09e74c

Browse files
authored
ci: dependabot check workflow - shallow clone, no sonar, no secrets
1 parent 619fcde commit a09e74c

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Dependabot Check
2+
on:
3+
push:
4+
branches:
5+
- dependabot/**
6+
jobs:
7+
gradle-check:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Checkout Repository
11+
uses: actions/checkout@v4
12+
- name: Set up JDK
13+
uses: actions/setup-java@v4
14+
with:
15+
distribution: 'temurin'
16+
java-version: '17'
17+
- name: Setup Gradle
18+
uses: gradle/actions/setup-gradle@v4
19+
- name: Run Gradle Checks
20+
run: ./gradlew check
21+
- name: Upload reports
22+
if: ${{ !cancelled() }}
23+
uses: actions/upload-artifact@v4
24+
with:
25+
name: reports
26+
path: '**/build/reports/**/*'

0 commit comments

Comments
 (0)