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

Revert back to go 1.23.2 to avoid daemon issue #364

Merged
merged 1 commit into from
Nov 8, 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
6 changes: 3 additions & 3 deletions .github/workflows/code-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
BuildAndTest-Coverage:
strategy:
matrix:
go: ['1.23']
go: ['1.23.2']
job_name: ['linux']

include:
Expand Down Expand Up @@ -521,7 +521,7 @@ jobs:
BuildAndTest-Coverage-Windows:
strategy:
matrix:
go: ['1.23']
go: ['1.23.2']
job_name: ['windows']

include:
Expand Down Expand Up @@ -1005,7 +1005,7 @@ jobs:
- BuildAndTest-Coverage-Windows
strategy:
matrix:
go: ['1.23']
go: ['1.23.2']
job_name: ['linux']

include:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
if: matrix.language == 'go'
uses: actions/setup-go@v5
with:
go-version: '1.23'
go-version: '1.23.2'
check-latest: true

- name: Go Version
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
needs: compile-gui
runs-on: windows-latest
env:
go: '1.23'
go: '1.23.2'
cgo: '0'
winfsp: winfsp-2.0.23075.msi
steps:
Expand Down Expand Up @@ -209,7 +209,7 @@ jobs:
needs: create-installer
runs-on: ubuntu-latest
env:
go: '1.23'
go: '1.23.2'
zig: 0.13.0

steps:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
name: Build and Test on Linux
runs-on: ubuntu-latest
env:
go: '1.23'
go: '1.23.2'
cgo: ''
containerName: 'test-cnt-ubn'

Expand Down Expand Up @@ -117,7 +117,7 @@ jobs:
name: Build and Test on Windows
runs-on: windows-latest
env:
go: '1.23'
go: '1.23.2'
cgo: '0'
containerName: 'test-cnt-win'

Expand Down Expand Up @@ -149,7 +149,7 @@ jobs:
name: Lint
runs-on: ubuntu-latest
env:
go: '1.23'
go: '1.23.2'
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/Seagate/cloudfuse

go 1.23.1
go 1.23.2

require (
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.15.0
Expand Down
2 changes: 1 addition & 1 deletion go_installer.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash
work_dir=$(echo $1 | sed 's:/*$::')
version="1.23.1"
version="1.23.2"
arch=`hostnamectl | grep "Arch" | rev | cut -d " " -f 1 | rev`

if [ $arch != "arm64" ]
Expand Down
Loading