Skip to content
This repository was archived by the owner on Sep 12, 2024. It is now read-only.

Commit acb9a45

Browse files
committed
Change permission
# TODO - details for request specific requests - sm/smea dyn functionality - Builder for requests Signed-off-by: zhaoxinn <[email protected]>
1 parent 41a8e8e commit acb9a45

File tree

1 file changed

+16
-17
lines changed

1 file changed

+16
-17
lines changed

.github/workflows/maven.yml

+16-17
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
11
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
22
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven
33

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-
94
name: Java CI with Maven
105

116
on:
@@ -14,22 +9,26 @@ on:
149
pull_request:
1510
branches: [ "master" ]
1611

12+
permissions:
13+
contents: read
14+
packages: write
15+
1716
jobs:
1817
build:
1918

2019
runs-on: ubuntu-latest
2120

2221
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
3231

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

0 commit comments

Comments
 (0)