Skip to content

Commit

Permalink
bump go to 1.22 in all CI configs and go.mod files
Browse files Browse the repository at this point in the history
Summary: Missed that when bumped Go in go.mod

Reviewed By: deathowl

Differential Revision: D54200264
  • Loading branch information
abulimov authored and facebook-github-bot committed Feb 26, 2024
1 parent ac01247 commit e8dad9a
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
submodules: recursive
- uses: actions/setup-go@v2
with:
go-version: 1.18
go-version: 1.22
- name: "Install RocksDB"
run: sudo bash .github/scripts/install_rocks_head.sh
- uses: golangci/golangci-lint-action@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint_dnswatch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: 1.18
go-version: 1.22
- name: "Install deps"
run: sudo apt-get update; sudo apt-get install -y libpcap0.8 libpcap0.8-dev make clang gcc-multilib
- name: "Install libbpf-1"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint_goose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
submodules: recursive
- uses: actions/setup-go@v2
with:
go-version: 1.18
go-version: 1.22
- uses: golangci/golangci-lint-action@v3
with:
working-directory: goose
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/perftest_dns.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
submodules: recursive
- uses: actions/setup-go@v2
with:
go-version: 1.18
go-version: 1.22
- name: install rocksdb
run: sudo bash .github/scripts/install_rocks_head.sh
- name : Perform perftest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
submodules: recursive
- uses: actions/setup-go@v2
with:
go-version: 1.18
go-version: 1.22
- name: install rocksdb
run: sudo bash .github/scripts/install_rocks_head.sh
- name : Compile
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_dnswatch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: 1.18
go-version: 1.22
- name: "Install deps"
run: sudo apt-get update; sudo apt-get install -y libpcap0.8 libpcap0.8-dev make clang gcc-multilib
- name: "Install libbpf-1"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_goose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
submodules: recursive
- uses: actions/setup-go@v2
with:
go-version: 1.18
go-version: 1.22
- name : Compile
run: cd goose; go build -v ./...
- name: Test and coverage
Expand Down
2 changes: 1 addition & 1 deletion dnswatch/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/facebook/dns/dnswatch

go 1.19
go 1.22

require (
github.com/aquasecurity/libbpfgo v0.4.6-libbpf-1.1.0
Expand Down
2 changes: 1 addition & 1 deletion go.work
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
go 1.18
go 1.22

use (
./dnsrocks
Expand Down
2 changes: 1 addition & 1 deletion goose/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/facebook/dns/goose

go 1.19
go 1.22

require (
github.com/miekg/dns v1.1.55
Expand Down

0 comments on commit e8dad9a

Please sign in to comment.