update go and java dependencies to their latest releases (#3183) #410
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: Main Branch build | |
| on: | |
| push: | |
| branches: | |
| - 'master' | |
| permissions: | |
| actions: none | |
| checks: none | |
| contents: read | |
| deployments: none | |
| issues: none | |
| discussions: none | |
| packages: none | |
| pull-requests: none | |
| repository-projects: none | |
| security-events: none | |
| statuses: none | |
| env: | |
| GOLANG_VERSION: 1.24 | |
| NODEJS_VERSION: 22 | |
| JAVA_VERSION_FULL_BUILD: 17 | |
| JAVA_VERSION_CLIENT_BUILD: 11 | |
| JAVA_DISTRO: temurin | |
| JAVA_ARCH: x64 | |
| jobs: | |
| athenz-build: | |
| runs-on: ubuntu-latest-4-cores | |
| steps: | |
| - name: Checkout repository | |
| id: checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Golang | |
| id: setup-go | |
| uses: actions/setup-go@v4 | |
| with: | |
| go-version: ${{ env.GOLANG_VERSION }} | |
| - name: Setup Node | |
| id: setup-node | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: ${{ env.NODEJS_VERSION }} | |
| - name: Setup Java | |
| id: setup-java | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: ${{ env.JAVA_VERSION_FULL_BUILD }} | |
| distribution: ${{ env.JAVA_DISTRO }} | |
| architecture: ${{ env.JAVA_ARCH }} | |
| - name: Setup ZMS DB Schema file | |
| run: cp servers/zms/schema/zms_server.sql servers/zms/src/test/resources/mysql | |
| - name: Build Athenz | |
| run: mvn -B install |