fix: builder and sdk changes #81

Merged
marcel.henselin merged 85 commits from chore/update_goreleaser into alpha 2026-03-11 13:13:46 +00:00
Showing only changes of commit 042652c9da - Show all commits

View file

@ -89,12 +89,24 @@ runs:
fi fi
echo "::endgroup::" echo "::endgroup::"
- name: Install JAVA
shell: bash
run: echo "::group::java install"
- name: Setup JAVA - name: Setup JAVA
uses: actions/setup-java@v5 uses: actions/setup-java@v5
with: with:
distribution: 'temurin' # See 'Supported distributions' for available options distribution: 'temurin' # See 'Supported distributions' for available options
java-version: '21' java-version: '21'
- name: Install JAVA
shell: bash
run: echo "::endgroup::"
- name: Install GO
shell: bash
run: echo "::group::go install"
- name: Install Go ${{ inputs.go-version }} - name: Install Go ${{ inputs.go-version }}
uses: actions/setup-go@v6 uses: actions/setup-go@v6
with: with:
@ -102,6 +114,10 @@ runs:
check-latest: true check-latest: true
go-version-file: 'go.mod' go-version-file: 'go.mod'
- name: Install GO
shell: bash
run: echo "::endgroup::"
- name: Determine GOMODCACHE - name: Determine GOMODCACHE
shell: bash shell: bash
id: goenv id: goenv