57dfc7fb40
Restrict the GitHub token permissions only to the required ones; this way, even if the attackers will succeed in compromising your workflow, they won’t be able to do much. - Included permissions for the action. https://github.com/ossf/scorecard/blob/main/docs/checks.md#token-permissions https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#permissions https://docs.github.com/en/actions/using-jobs/assigning-permissions-to-jobs [Keeping your GitHub Actions and workflows secure Part 1: Preventing pwn requests](https://securitylab.github.com/research/github-actions-preventing-pwn-requests/) Signed-off-by: naveen <172697+naveensrinivasan@users.noreply.github.com>
59 lines
1.8 KiB
YAML
59 lines
1.8 KiB
YAML
name: troubleshooting
|
|
|
|
on: workflow_dispatch
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ${{ matrix.os }}
|
|
continue-on-error: false
|
|
strategy:
|
|
matrix:
|
|
#os: [ ubuntu-latest, windows-latest, macos-latest ]
|
|
os: [ ubuntu-latest ]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/cache@v3
|
|
with:
|
|
path: |
|
|
~/.m2/repository
|
|
~/.gradle/caches
|
|
~/.cache
|
|
~/work/pmd/target/repositories
|
|
vendor/bundle
|
|
key: v3-${{ runner.os }}-${{ hashFiles('**/pom.xml') }}
|
|
restore-keys: |
|
|
v3-${{ runner.os }}-
|
|
- name: Set up Ruby 2.7
|
|
uses: ruby/setup-ruby@v1
|
|
with:
|
|
ruby-version: 2.7
|
|
- name: Setup Environment
|
|
shell: bash
|
|
run: |
|
|
echo "LANG=en_US.UTF-8" >> $GITHUB_ENV
|
|
echo "MAVEN_OPTS=-Dmaven.wagon.httpconnectionManager.ttlSeconds=180 -Dmaven.wagon.http.retryHandler.count=3 -DstagingProgressTimeoutMinutes=30" >> $GITHUB_ENV
|
|
echo "PMD_CI_SCRIPTS_URL=https://raw.githubusercontent.com/pmd/build-tools/17/scripts" >> $GITHUB_ENV
|
|
- name: Check Environment
|
|
shell: bash
|
|
run: |
|
|
f=check-environment.sh; \
|
|
mkdir -p .ci && \
|
|
( [ -e .ci/$f ] || curl -sSL "${PMD_CI_SCRIPTS_URL}/$f" > ".ci/$f" ) && \
|
|
chmod 755 .ci/$f && \
|
|
.ci/$f
|
|
- name: Build
|
|
run: |
|
|
f=openjdk.bash; \
|
|
mkdir -p .ci/inc && \
|
|
( [ -e .ci/inc/$f ] || curl -sSL "${PMD_CI_SCRIPTS_URL}/inc/$f" > ".ci/inc/$f" ) && \
|
|
source .ci/inc/$f ; \
|
|
pmd_ci_openjdk_install_adoptium 11 ; \
|
|
pmd_ci_openjdk_setdefault 11
|
|
shell: bash
|
|
- name: Setup tmate session
|
|
uses: mxschmitt/action-tmate@v3
|