Skip to content
This repository was archived by the owner on Feb 17, 2025. It is now read-only.

Commit 7a45227

Browse files
authored
build: remove failing action (#6049)
1 parent 1ff8a54 commit 7a45227

File tree

1 file changed

+29
-28
lines changed

1 file changed

+29
-28
lines changed

.github/workflows/pull_requests.yml

Lines changed: 29 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -83,31 +83,32 @@ jobs:
8383
name: it-test-logs
8484
retention-days: 7
8585
path: maven/target/it/**/build.log
86-
audit:
87-
runs-on: ubuntu-latest
88-
permissions:
89-
contents: read
90-
pull-requests: write
91-
name: Audit
92-
steps:
93-
- uses: actions/checkout@v4
94-
- name: Check Maven Cache
95-
id: maven-cache
96-
uses: actions/cache@v3
97-
with:
98-
path: ~/.m2/repository/
99-
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
100-
restore-keys: |
101-
${{ runner.os }}-maven-
102-
- name: Semgrep
103-
id: semgrep
104-
run: |
105-
docker run --rm -v "${PWD}:/src" returntocorp/semgrep semgrep --config "p/ci" --sarif > semgrep.sarif
106-
- name: Maven Site
107-
if: always()
108-
run: |
109-
mvn -s settings.xml package site -DskipTests=true --no-transfer-progress --batch-mode
110-
- name: Publish Comments
111-
if: always()
112-
run: |
113-
mvn se.bjurr.violations:violation-comments-to-github-maven-plugin:violation-comments --no-transfer-progress --batch-mode -DpullRequestId=${{ github.event.pull_request.number }} -DoAuth2Token=${{ secrets.GITHUB_TOKEN }}
86+
# this action has been failing - so I'm disabling it; we never really found anything anyways
87+
# audit:
88+
# runs-on: ubuntu-latest
89+
# permissions:
90+
# contents: read
91+
# pull-requests: write
92+
# name: Audit
93+
# steps:
94+
# - uses: actions/checkout@v4
95+
# - name: Check Maven Cache
96+
# id: maven-cache
97+
# uses: actions/cache@v3
98+
# with:
99+
# path: ~/.m2/repository/
100+
# key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
101+
# restore-keys: |
102+
# ${{ runner.os }}-maven-
103+
# - name: Semgrep
104+
# id: semgrep
105+
# run: |
106+
# docker run --rm -v "${PWD}:/src" returntocorp/semgrep semgrep --config "p/ci" --sarif > semgrep.sarif
107+
# - name: Maven Site
108+
# if: always()
109+
# run: |
110+
# mvn -s settings.xml package site -DskipTests=true --no-transfer-progress --batch-mode
111+
# - name: Publish Comments
112+
# if: always()
113+
# run: |
114+
# mvn se.bjurr.violations:violation-comments-to-github-maven-plugin:violation-comments --no-transfer-progress --batch-mode -DpullRequestId=${{ github.event.pull_request.number }} -DoAuth2Token=${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)