Skip to content

Commit

Permalink
Updated pipeline go version to 1.23.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ynHuber committed Jan 29, 2025
1 parent c83f8be commit 114c120
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: setup go
uses: actions/[email protected]
with:
go-version: '1.23.2'

# Login against a Docker registry except on PR
# https://github.com/docker/login-action
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ jobs:
run: sudo apt-get install -y libpcap-dev

- name: setup go
uses: actions/setup-go@v3
uses: actions/setup-go@v5.3.0
with:
go-version: '1.20'
go-version: '1.23.2'

- name: test
run: go test ./...
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ jobs:
run: sudo apt-get install -y libpcap-dev

- name: setup go
uses: actions/setup-go@v3
uses: actions/setup-go@v5.3.0
with:
go-version: '1.20'
go-version: '1.23.2'

- name: test before release
run: go test ./...
Expand All @@ -49,6 +49,10 @@ jobs:
runs-on: ubuntu-latest
needs: build
steps:
- name: setup go
uses: actions/setup-go@v3
with:
go-version: '1.23.2'
- name: get binaries from previous job
uses: actions/download-artifact@v3
- name: display downloaded files
Expand Down

0 comments on commit 114c120

Please sign in to comment.