Skip to content

Commit

Permalink
update github action golang version to 1.22.6
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaods authored Nov 19, 2024
1 parent 9cff55a commit 12b94b3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/builder-arm64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ jobs:
GOARCH: ${{ matrix.goarch }}
steps:
- uses: actions/checkout@master
- uses: actions/setup-go@v4
- uses: actions/setup-go@v5
with:
go-version: '1.22'
go-version: '^1.22.6'
cache-dependency-path: subdir/go.sum
- name: generate resources
run: mkdir -p {build/data,build/static}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ jobs:
GOARCH: ${{ matrix.goarch }}
steps:
- uses: actions/checkout@master
- uses: actions/setup-go@v4
- uses: actions/setup-go@v5
with:
go-version: '1.22'
go-version: '^1.22.6'
cache-dependency-path: subdir/go.sum
- name: check depends
run: sudo apt-get install -y libseccomp-dev
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ jobs:
- uses: actions/checkout@v2
with:
ref: 'dev'
- uses: actions/setup-go@v4
- uses: actions/setup-go@v5
with:
go-version: '1.22'
go-version: '^1.22.6'
cache-dependency-path: subdir/go.sum
- name: generate resources
run: |
Expand Down

0 comments on commit 12b94b3

Please sign in to comment.