Skip to content

Commit fe56733

Browse files
committed
Update workflows
1 parent 7433efe commit fe56733

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616
uses: actions/checkout@v3
1717
with:
1818
fetch-depth: 0
19-
- name: Set up Go 1.22
19+
- name: Set up Go 1.23
2020
uses: actions/setup-go@v3
2121
with:
22-
go-version: "1.22"
22+
go-version: "1.23"
2323
cache: true
2424
- name: Install dependencies
2525
run: sudo apt-get update && sudo apt-get install -y gcc-aarch64-linux-gnu

.github/workflows/test.yaml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,10 @@ jobs:
3737
- name: Install Go 🧑‍💻
3838
uses: actions/setup-go@v5
3939
with:
40-
go-version: "1.22"
40+
go-version: "1.23"
4141

4242
- name: Lint code issues 🚨
43-
uses: golangci/golangci-lint-action@v4
44-
with:
45-
version: "v1.57"
46-
skip-pkg-cache: true
47-
install-mode: "goinstall"
43+
uses: golangci/golangci-lint-action@v3
4844

4945
- name: Run tests 🧪
5046
run: go test -p 1 -cover -covermode atomic -coverprofile=profile.cov -v ./...

0 commit comments

Comments
 (0)