Skip to content

Commit

Permalink
fix: update go version
Browse files Browse the repository at this point in the history
Signed-off-by: Eray Ates <[email protected]>
  • Loading branch information
rytsh committed Mar 6, 2025
1 parent 05ba6cf commit 90a176b
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 17 deletions.
14 changes: 1 addition & 13 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion ci/alpine.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG ALPINE=alpine:3.21.2
ARG ALPINE=alpine:3.21.3

FROM $ALPINE

Expand Down

0 comments on commit 90a176b

Please sign in to comment.