diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 86dec57025..5e7d5c9cb5 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -107,8 +107,9 @@ jobs: unit: ["persistence-defectdojo"] steps: - uses: actions/checkout@v3 - - uses: actions/setup-java@v1 + - uses: actions/setup-java@v3 with: + distribution: "temurin" # required Java distribution java-version: "17" # The JDK version to make available on the path. java-package: jdk # (jre, jdk, or jdk+fx) - defaults to jdk architecture: x64 # (x64 or x86) - defaults to x64 @@ -131,7 +132,7 @@ jobs: uses: actions/checkout@v3 - name: Go Setup - uses: actions/setup-go@v2 + uses: actions/setup-go@v4 with: go-version: ${{ env.GO_VERSION }} @@ -166,7 +167,7 @@ jobs: uses: actions/checkout@v3 - name: Go Setup - uses: actions/setup-go@v2 + uses: actions/setup-go@v4 with: go-version: ${{ env.GO_VERSION }}