Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update go version #652

Merged
merged 2 commits into from
Nov 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/distribute-zboxcli-apt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ on:
env:
APP_NAME: zbox
APP_VERSION: ${{ github.event.inputs.version }}
GO_VERSION: 1.21.0
REMOTE_SERVER: 5.9.151.246
REMOTE_USER: root

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/distribute-zboxcli-choco.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ env:
APP_NAME: zbox
PACKAGE_ID: zbox
APP_VERSION: ${{ github.event.inputs.version }}
GO_VERSION: '1.21'
GO_VERSION: '1.22'

jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ env:
GITHUB_TOKEN: ${{ secrets.GOSDK }}
VERSION: ${{ github.event.inputs.version }}
APP_NAME: zbox
GO_VERSION: 1.21
GO_VERSION: 1.22

jobs:
create_release:
Expand Down
2 changes: 1 addition & 1 deletion scripts/debian/Dockerfile.build
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=$TARGETPLATFORM golang:1.21 AS build
FROM --platform=$TARGETPLATFORM golang:1.22 AS build
ARG VERSION
WORKDIR /src
COPY go.mod go.sum .
Expand Down
Loading