diff --git a/.github/actions/setup-environment/action.yml b/.github/actions/setup-environment/action.yml deleted file mode 100644 index ab9cb646..00000000 --- a/.github/actions/setup-environment/action.yml +++ /dev/null @@ -1,21 +0,0 @@ -name: Prepare Build Environment -description: Installs required JDKs for building and testing -runs: - using: "composite" - steps: - - - name: 'Set up JDK 8' - uses: actions/setup-java@v4 - with: - distribution: 'temurin' - java-version: 8 - - - name: Prepare JDK8 env var - shell: bash - run: echo "JDK8=$JAVA_HOME" >> $GITHUB_ENV - - - name: Setup Git user - shell: bash - run: | - git config --global user.name "$(git --no-pager log --format=format:'%an' -n 1)" - git config --global user.email "$(git --no-pager log --format=format:'%ae' -n 1)" diff --git a/.github/renovate.json5 b/.github/renovate.json5 deleted file mode 100644 index 582b757b..00000000 --- a/.github/renovate.json5 +++ /dev/null @@ -1,17 +0,0 @@ -{ - "$schema": "https://docs.renovatebot.com/renovate-schema.json", - extends: [ - "github>gradle/renovate-agent//presets/dv-automerge-minor.json5" - ], - packageRules: [ - // We need to use Spock 2.x with Groovy 3.0 as Gradle uses Groovy 3.0 at the moment - // This rule prevents renovate from upgrading Spock to groovy-4.0 - { - matchPackagePrefixes: [ - "org.spockframework:" - ], - matchCurrentValue: "/^2\\./", - allowedVersions: "/^[0-9]+\\.[0-9]+(\\.[0-9]+)?-groovy-3\\.0$/" - } - ] -} diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml deleted file mode 100644 index 0d888349..00000000 --- a/.github/workflows/codeql-analysis.yml +++ /dev/null @@ -1,76 +0,0 @@ -# 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: [ main ] - pull_request: - # The branches below must be a subset of the branches above - branches: [ main ] - schedule: - - cron: '44 15 * * 4' - -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 [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ] - # Learn more about CodeQL language support at https://git.io/codeql-language-support - - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - - name: Setup Git user - shell: bash - run: | - git config --global user.name "$(git --no-pager log --format=format:'%an' -n 1)" - git config --global user.email "$(git --no-pager log --format=format:'%ae' -n 1)" - - # Initializes the CodeQL tools for scanning. - - name: Initialize CodeQL - uses: github/codeql-action/init@v3 - 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. - # queries: ./path/to/local/query, your-org/your-repo/queries@main - - # 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@v3 - - # ℹī¸ Command-line programs to run using the OS shell. - # 📚 https://git.io/JvXDl - - # ✏ī¸ If the Autobuild fails above, remove it and uncomment the following three lines - # and modify them (or add more) to build your code if your project - # uses a compiled language - - #- run: | - # make bootstrap - # make release - - - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v3 diff --git a/.github/workflows/gradle-wrapper-validation.yml b/.github/workflows/gradle-wrapper-validation.yml deleted file mode 100644 index 19c7c20e..00000000 --- a/.github/workflows/gradle-wrapper-validation.yml +++ /dev/null @@ -1,10 +0,0 @@ -name: "Validate Gradle Wrapper" -on: [push, pull_request] - -jobs: - validation: - name: "Validation" - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: gradle/actions/wrapper-validation@v4 diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml deleted file mode 100644 index ef738e75..00000000 --- a/.github/workflows/verify.yml +++ /dev/null @@ -1,41 +0,0 @@ -name: 'Verify' - -on: - push: - branches: - - main - pull_request: - workflow_dispatch: - -# https://stackoverflow.com/a/72408109/16358266 -concurrency: - group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} - cancel-in-progress: true - -jobs: - build-and-verify: - runs-on: 'ubuntu-latest' - steps: - - uses: actions/checkout@v4 - - - name: "Setup Build Environment" - uses: ./.github/actions/setup-environment - - - name: 'Setup Gradle' - uses: gradle/actions/setup-gradle@v4 - with: - develocity-access-key: ${{ secrets.DEVELOCITY_GRADLE_ORG_ACCESS_KEY }} - - - name: "Verify" - env: - DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_GRADLE_ORG_ACCESS_KEY }} - run: "./gradlew build -s" - - - name: "Store reports" - if: failure() - uses: actions/upload-artifact@v4 - with: - name: check-reports - path: | - **/build/reports/ - **/build/test-results/ diff --git a/.github/workflows/wrapper-upgrade.yml b/.github/workflows/wrapper-upgrade.yml deleted file mode 100644 index a7baeb7d..00000000 --- a/.github/workflows/wrapper-upgrade.yml +++ /dev/null @@ -1,45 +0,0 @@ -name: Upgrade Gradle wrapper - -on: - schedule: - - cron: '0 0 * * *' # Every day at 00:00 UTC - workflow_dispatch: - -jobs: - Gradle: - runs-on: ubuntu-latest - steps: - - name: Check out repository - uses: actions/checkout@v4 - with: - fetch-depth: 1 - - - name: Set up Git config - env: - TOKEN: ${{ secrets.GH_BOT_GITHUB_TOKEN }} - run: | - git config --global url."https://bot-githubaction:${TOKEN}@github.com/".insteadOf "https://github.com/" - - - name: Import GPG key - uses: crazy-max/ghaction-import-gpg@ea88154188003ca5aeb616063b2d0dd6a9cf86e2 - with: - gpg_private_key: ${{ secrets.GH_BOT_PGP_PRIVATE_KEY }} - passphrase: ${{ secrets.GH_BOT_PGP_PASSPHRASE }} - git_user_signingkey: true - git_commit_gpgsign: true - git_config_global: true - - - uses: actions/setup-java@v4 - with: - distribution: temurin - java-version: 17 - - - name: 'Setup Gradle' - uses: gradle/actions/setup-gradle@v4 - with: - develocity-access-key: ${{ secrets.DEVELOCITY_GRADLE_ORG_ACCESS_KEY }} - - - name: 'Upgrade Gradle wrapper' - env: - WRAPPER_UPGRADE_GIT_TOKEN: ${{ secrets.GH_BOT_GITHUB_TOKEN }} - run: ./gradlew clean upgradeGradleWrapperAll --no-build-cache diff --git a/.idea/gradle.xml b/.idea/gradle.xml index 60dc1274..2ad516aa 100644 --- a/.idea/gradle.xml +++ b/.idea/gradle.xml @@ -4,10 +4,19 @@