From ec1280dc71f4e9680eecf8bf8f022973c269b3d9 Mon Sep 17 00:00:00 2001 From: Maggie Dreyer Date: Wed, 22 Oct 2025 13:26:35 -0700 Subject: [PATCH] (CDPE-7260) Remove mend scan job We have moved development of the puppet-dev-tools image into the main product repo, and we are doing security scanning there instead. This commit removes the mend scan from this repo to avoid confusing reports. --- .github/workflows/mend.yml | 39 -------------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 .github/workflows/mend.yml diff --git a/.github/workflows/mend.yml b/.github/workflows/mend.yml deleted file mode 100644 index c5146e4..0000000 --- a/.github/workflows/mend.yml +++ /dev/null @@ -1,39 +0,0 @@ -name: mend_scan -on: - workflow_dispatch: - push: - branches: - - main -jobs: - build: - runs-on: ubuntu-latest - steps: - - name: checkout repo content - uses: actions/checkout@v2 # checkout the repository content to github runner. - with: - fetch-depth: 1 - - name: setup ruby - uses: ruby/setup-ruby@v1 - with: - ruby-version: 2.7 - - name: create lock - run: bundle lock - # install java - - uses: actions/setup-java@v3 - with: - distribution: 'temurin' # See 'Supported distributions' for available options - java-version: '17' - # download mend - - name: download_mend - run: curl -o wss-unified-agent.jar https://unified-agent.s3.amazonaws.com/wss-unified-agent.jar - - name: run mend - run: java -jar wss-unified-agent.jar - env: - WS_FILESYSTEMSCAN: true - WS_CHECKPOLICIES: true - WS_FORCEUPDATE: true - WS_APIKEY: ${{ secrets.MEND_API_KEY }} - WS_WSS_URL: https://saas-eu.whitesourcesoftware.com/agent - WS_USERKEY: ${{ secrets.MEND_TOKEN }} - WS_PRODUCTNAME: CD4PE - WS_PROJECTNAME: ${{ github.event.repository.name }}