ci(deps): update dependency windows github actions runner to v2025 #2125
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| tags: '*' | |
| branches-ignore: | |
| - 'autodelivery**' | |
| - 'bump-**' | |
| - 'renovate/**' | |
| paths-ignore: | |
| - 'CHANGELOG.md' | |
| - 'renovate.json' | |
| - '.gitignore' | |
| pull_request: | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| os: [ windows-2025, macos-14, ubuntu-24.04 ] | |
| fail-fast: false | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| # Checkout the repository | |
| - name: Checkout | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - uses: DanySK/build-check-deploy-gradle-action@3.7.15 | |
| with: | |
| check-command: ./gradlew check runAll --parallel | |
| should-deploy: false | |
| success: | |
| runs-on: ubuntu-24.04 | |
| needs: | |
| - build | |
| if: >- | |
| always() && ( | |
| contains(join(needs.*.result, ','), 'failure') | |
| || !contains(join(needs.*.result, ','), 'cancelled') | |
| ) | |
| steps: | |
| - name: Verify that there were no failures | |
| run: ${{ !contains(join(needs.*.result, ','), 'failure') }} |