diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 4a7902fb8..507591884 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -13,13 +13,13 @@ jobs: strategy: fail-fast: false matrix: - go: ["1.21", "1.20"] + go: ["1.22", "1.21"] steps: - name: Checkout - uses: actions/checkout@v4.1.1 + uses: actions/checkout@v4.1.4 - name: Go installation - uses: actions/setup-go@v5.0.0 + uses: actions/setup-go@v5.0.1 with: go-version: ${{ matrix.go }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index bb1e23690..e2cd5041c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,9 +11,9 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4.1.1 + uses: actions/checkout@v4.1.4 - name: Release - uses: softprops/action-gh-release@v0.1.15 + uses: softprops/action-gh-release@v2.0.4 with: generate_release_notes: true diff --git a/Dockerfile b/Dockerfile index 09400915f..58d52b91d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ -ARG GO_VERSION=1.21.6-bookworm -ARG GOIMPORTS_VERSION=0.16.1 -ARG DELVE_VERSION=1.22.0 +ARG GO_VERSION=1.22.2-bookworm +ARG GOIMPORTS_VERSION=0.20.0 +ARG DELVE_VERSION=1.22.1 ## Base image diff --git a/scripts/generate-code.sh b/scripts/generate-code.sh index 77be111cd..96257a66d 100755 --- a/scripts/generate-code.sh +++ b/scripts/generate-code.sh @@ -8,7 +8,7 @@ for F in $(cat .openapi-generator/files) ; do done # Generate library -docker run --rm --env JAVA_OPTS=-DmaxYamlCodePoints=9999999 -v "${PWD}:/local" openapitools/openapi-generator-cli:v7.2.0 \ +docker run --rm --env JAVA_OPTS=-DmaxYamlCodePoints=9999999 -v "${PWD}:/local" openapitools/openapi-generator-cli:v7.5.0 \ generate \ --config /local/.openapi-generator/config.yaml \ --input-spec /local/api/openapi.yaml \