diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index ac4e2c7f6..3780d6674 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -19,9 +19,9 @@ jobs: fail-fast: false matrix: java: [ '17', '21', 'profile-j21' ] - maven: [ '3.9.6' ] + maven: [ '3.9.9' ] python: [ '3.12' ] - os: [ 'ubuntu-22.04' ] + os: [ 'ubuntu-24.04' ] name: Build (Java ${{ matrix.java }}, ${{ matrix.os }}) runs-on: ${{ matrix.os }} steps: @@ -119,3 +119,15 @@ jobs: title: CheckStyle Violations path: '**/checkstyle-result.xml' mode: inline + + - name: Verify Changed Files + uses: tj-actions/verify-changed-files@v20 + id: verify-changed-files + + - name: Fail on Changed Files + if: steps.verify-changed-files.outputs.changed_files != '' + env: + CHANGED_FILES: ${{ steps.verify-changed-files.outputs.changed_files }} + run: | + echo "::error::Files have changed: $CHANGED_FILES" + exit 1 diff --git a/.gitignore b/.gitignore index 718d23215..696245bcd 100644 --- a/.gitignore +++ b/.gitignore @@ -11,6 +11,6 @@ bin/ bundles/**/src/main/history features/**/src/main/history features/**/src/main/feature -npm-debug.log +*.log node_modules/ .idea