This repository was archived by the owner on Sep 12, 2024. It is now read-only.
Commit acb9a45 1 parent 41a8e8e commit acb9a45 Copy full SHA for acb9a45
File tree 1 file changed +16
-17
lines changed
1 file changed +16
-17
lines changed Original file line number Diff line number Diff line change 1
1
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
2
2
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven
3
3
4
- # This workflow uses actions that are not certified by GitHub.
5
- # They are provided by a third-party and are governed by
6
- # separate terms of service, privacy policy, and support
7
- # documentation.
8
-
9
4
name : Java CI with Maven
10
5
11
6
on :
14
9
pull_request :
15
10
branches : [ "master" ]
16
11
12
+ permissions :
13
+ contents : read
14
+ packages : write
15
+
17
16
jobs :
18
17
build :
19
18
20
19
runs-on : ubuntu-latest
21
20
22
21
steps :
23
- - uses : actions/checkout@v4
24
- - name : Set up JDK 21
25
- uses : actions/setup-java@v4
26
- with :
27
- java-version : ' 21'
28
- distribution : ' temurin'
29
- cache : maven
30
- - name : Build with Maven
31
- run : mvn -B package --file pom.xml
22
+ - uses : actions/checkout@v4
23
+ - name : Set up JDK 21
24
+ uses : actions/setup-java@v4
25
+ with :
26
+ java-version : ' 21'
27
+ distribution : ' temurin'
28
+ cache : maven
29
+ - name : Build with Maven
30
+ run : mvn -B package --file pom.xml
32
31
33
- # Optional: Uploads the full dependency graph to GitHub to improve the quality of Dependabot alerts this repository can receive
34
- - name : Update dependency graph
35
- uses : advanced-security/maven-dependency-submission-action@571e99aab1055c2e71a1e2309b9691de18d6b7d6
32
+ # Uploads the full dependency graph to GitHub to improve the quality of Dependabot alerts this repository can receive
33
+ - name : Update dependency graph
34
+ uses : advanced-security/maven-dependency-submission-action@v1
You can’t perform that action at this time.
0 commit comments