Skip to content

Commit

Permalink
Revert back to go 1.23.2 to avoid daemon issue (#364)
Browse files Browse the repository at this point in the history
  • Loading branch information
jfantinhardesty authored Nov 8, 2024
1 parent 0b7aeac commit ea47d0c
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
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

0 comments on commit ea47d0c

Please sign in to comment.