From 54a1964097b2d10eab2a0d431e1fc445d83b618e Mon Sep 17 00:00:00 2001 From: StepSecurity Bot Date: Fri, 26 Apr 2024 13:38:03 +0000 Subject: [PATCH 1/2] [StepSecurity] Apply security best practices Signed-off-by: StepSecurity Bot --- .github/workflows/build-autotriage.yml | 3 ++ .github/workflows/codeql.yml | 73 ++++++++++++++++++++++++++ .github/workflows/comment-bot.yml | 3 ++ .github/workflows/labeler.yml | 3 ++ .github/workflows/signsbom.yml | 3 ++ .github/workflows/testsbom.yml | 3 ++ 6 files changed, 88 insertions(+) create mode 100644 .github/workflows/codeql.yml diff --git a/.github/workflows/build-autotriage.yml b/.github/workflows/build-autotriage.yml index 493e35f03..3f57adfc2 100644 --- a/.github/workflows/build-autotriage.yml +++ b/.github/workflows/build-autotriage.yml @@ -22,6 +22,9 @@ on: env: TRIAGE_SCRIPT: "tooling/build_autotriage/build_autotriage.sh" +permissions: + contents: read + jobs: autotriage: permissions: diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml new file mode 100644 index 000000000..dc242326b --- /dev/null +++ b/.github/workflows/codeql.yml @@ -0,0 +1,73 @@ +# For most projects, this workflow file will not need changing; you simply need +# to commit it to your repository. +# +# You may wish to alter this file to override the set of languages analyzed, +# or to provide custom queries or build logic. +# +# ******** NOTE ******** +# We have attempted to detect the languages in your repository. Please check +# the `language` matrix defined below to confirm you have the correct set of +# supported CodeQL languages. +# +name: "CodeQL" + +on: + push: + branches: ["master"] + pull_request: + # The branches below must be a subset of the branches above + branches: ["master"] + schedule: + - cron: "0 0 * * 1" + +permissions: + contents: read + +jobs: + analyze: + name: Analyze + runs-on: ubuntu-latest + permissions: + actions: read + contents: read + security-events: write + + strategy: + fail-fast: false + matrix: + language: ["java"] + # CodeQL supports [ $supported-codeql-languages ] + # Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support + + steps: + - name: Checkout repository + uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 + + # Initializes the CodeQL tools for scanning. + - name: Initialize CodeQL + uses: github/codeql-action/init@ceaec5c11a131e0d282ff3b6f095917d234caace # v2.25.3 + with: + languages: ${{ matrix.language }} + # If you wish to specify custom queries, you can do so here or in a config file. + # By default, queries listed here will override any specified in a config file. + # Prefix the list here with "+" to use these queries and those in the config file. + + # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). + # If this step fails, then you should remove it and run the build manually (see below) + - name: Autobuild + uses: github/codeql-action/autobuild@ceaec5c11a131e0d282ff3b6f095917d234caace # v2.25.3 + + # ℹī¸ Command-line programs to run using the OS shell. + # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun + + # If the Autobuild fails above, remove it and uncomment the following three lines. + # modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance. + + # - run: | + # echo "Run, Build Application using script" + # ./location_of_script_within_repo/buildscript.sh + + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@ceaec5c11a131e0d282ff3b6f095917d234caace # v2.25.3 + with: + category: "/language:${{matrix.language}}" diff --git a/.github/workflows/comment-bot.yml b/.github/workflows/comment-bot.yml index d8e3d3eff..43f066a55 100644 --- a/.github/workflows/comment-bot.yml +++ b/.github/workflows/comment-bot.yml @@ -17,6 +17,9 @@ on: pull_request_target: types: [ opened ] +permissions: + contents: read + jobs: comment: permissions: diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml index c328a846b..383db66df 100644 --- a/.github/workflows/labeler.yml +++ b/.github/workflows/labeler.yml @@ -19,6 +19,9 @@ on: issues: issue_comment: +permissions: + contents: read + jobs: label: permissions: diff --git a/.github/workflows/signsbom.yml b/.github/workflows/signsbom.yml index 1247e6562..1ba9b3ec5 100644 --- a/.github/workflows/signsbom.yml +++ b/.github/workflows/signsbom.yml @@ -26,6 +26,9 @@ concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: ${{ github.event_name == 'pull_request' }} +permissions: + contents: read + jobs: test_sbom_sign: name: sign_sbom diff --git a/.github/workflows/testsbom.yml b/.github/workflows/testsbom.yml index 25ae42d76..f6825c06b 100644 --- a/.github/workflows/testsbom.yml +++ b/.github/workflows/testsbom.yml @@ -26,6 +26,9 @@ concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: ${{ github.event_name == 'pull_request' }} +permissions: + contents: read + jobs: test_sbom_gen: name: gen_sbom From 3eb1ebf481f275e051959878609fdd348d505a3c Mon Sep 17 00:00:00 2001 From: George Adams Date: Fri, 26 Apr 2024 15:09:24 +0100 Subject: [PATCH 2/2] Update codeql.yml --- .github/workflows/codeql.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index dc242326b..fc185dcc5 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -1,3 +1,16 @@ +# ******************************************************************************** +# Copyright (c) 2021 Contributors to the Eclipse Foundation +# +# See the NOTICE file(s) with this work for additional +# information regarding copyright ownership. +# +# This program and the accompanying materials are made +# available under the terms of the Apache Software License 2.0 +# which is available at https://www.apache.org/licenses/LICENSE-2.0. +# +# SPDX-License-Identifier: Apache-2.0 +# ******************************************************************************** + # For most projects, this workflow file will not need changing; you simply need # to commit it to your repository. #