diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d90cf860c..d0fe7aa5c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -91,7 +91,7 @@ jobs: if: ${{ env.USE_STAGE == 'true' }} run: | cp $HOME/.m2/settings.xml /tmp/settings.xml - mv -vf .github/configs/settings.xml $HOME/.m2/settings.xml + mv -vf ../.github/configs/settings.xml $HOME/.m2/settings.xml - name: Compile run: mvn clean compile -e -Dmaven.javadoc.skip=true -ntp diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index a5aa24891..779c4406f 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -10,6 +10,10 @@ on: # schedule: # - cron: '45 7 * * 1' +defaults: + run: + working-directory: computer + jobs: analyze: env: @@ -40,7 +44,7 @@ jobs: if: ${{ env.USE_STAGE == 'true' }} run: | cp $HOME/.m2/settings.xml /tmp/settings.xml - mv -vf .github/configs/settings.xml $HOME/.m2/settings.xml + mv -vf ../.github/configs/settings.xml $HOME/.m2/settings.xml # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/license-checker.yml b/.github/workflows/license-checker.yml index 5d5c8c0cf..93d593185 100644 --- a/.github/workflows/license-checker.yml +++ b/.github/workflows/license-checker.yml @@ -7,6 +7,10 @@ on: - /^release-.*$/ pull_request: +defaults: + run: + working-directory: computer + concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true