diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 65fff5b..432dab4 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -17,20 +17,8 @@ jobs: name: Install pnpm id: pnpm-install with: - version: 9 + version: 10 run_install: false - - name: Get pnpm store directory - id: pnpm-cache - shell: bash - run: | - echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT - - uses: actions/cache@v4 - name: Setup pnpm cache - with: - path: ${{ steps.pnpm-cache.outputs.STORE_PATH }} - key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} - restore-keys: | - ${{ runner.os }}-pnpm-store- - uses: actions/checkout@v4 with: # Disabling shallow clone is recommended for improving relevancy of reporting diff --git a/.github/workflows/tag.yml b/.github/workflows/tag.yml index 50f31ca..dcf47dd 100644 --- a/.github/workflows/tag.yml +++ b/.github/workflows/tag.yml @@ -16,7 +16,7 @@ jobs: - name: Install Go uses: actions/setup-go@v5 with: - go-version: 1.23 + go-version: 1.24 - name: Unshallow run: git fetch --prune --unshallow diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 534d2a1..d3604ec 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -18,7 +18,7 @@ jobs: fetch-depth: 0 - uses: actions/setup-go@v5 with: - go-version: '1.23' # The Go version to download (if necessary) and use. + go-version: '1.24' # The Go version to download (if necessary) and use. # - name: download golangci.yml # run: | # [[ ! -f ".golangci.yml" ]] && curl -kfsSL -O https://raw.githubusercontent.com/worldline-go/guide/main/lint/.golangci.yml || true diff --git a/.goreleaser.yaml b/.goreleaser.yaml index 3a26bae..eb6deb3 100644 --- a/.goreleaser.yaml +++ b/.goreleaser.yaml @@ -98,7 +98,7 @@ dockers: - image_templates: - 'ghcr.io/worldline-go/turna:{{ .Tag }}' - 'ghcr.io/worldline-go/turna:{{ .Tag }}-alpine' - - 'ghcr.io/worldline-go/turna:{{ .Tag }}-alpine3.21.2' + - 'ghcr.io/worldline-go/turna:{{ .Tag }}-alpine3.21.3' - 'ghcr.io/worldline-go/turna:latest' dockerfile: ci/alpine.Dockerfile build_flag_templates: diff --git a/ci/alpine.Dockerfile b/ci/alpine.Dockerfile index 84f78f1..0d98114 100644 --- a/ci/alpine.Dockerfile +++ b/ci/alpine.Dockerfile @@ -1,4 +1,4 @@ -ARG ALPINE=alpine:3.21.2 +ARG ALPINE=alpine:3.21.3 FROM $ALPINE