Skip to content

Commit 0a6df83

Browse files
authored
Fix known vulnerabilities (#60)
* Update Go version in CI workflow Updated Go version in CI workflow from 1.25.6 to 1.25.7. * Update Go version to 1.25.7 in workflow * Update Go version in Dockerfile to 1.25.7
1 parent eef7472 commit 0a6df83

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Set up Go
1919
uses: actions/setup-go@v4
2020
with:
21-
go-version: '1.25.6'
21+
go-version: '1.25.7'
2222

2323
- name: Cache Go build
2424
uses: actions/cache@v4
@@ -46,3 +46,4 @@ jobs:
4646

4747

4848

49+

.github/workflows/dependency-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Set up Go
1919
uses: actions/setup-go@v4
2020
with:
21-
go-version: '1.25.6'
21+
go-version: '1.25.7'
2222

2323
- name: Install govulncheck
2424
run: go install golang.org/x/vuln/cmd/govulncheck@latest

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Multi-stage Dockerfile for LogLynx
22
# Builder stage: compiles a static binary for the target platform
3-
FROM golang:1.25.6 AS builder
3+
FROM golang:1.25.7 AS builder
44

55
WORKDIR /src
66

@@ -42,3 +42,4 @@ EXPOSE 8080
4242
ENTRYPOINT ["/usr/local/bin/loglynx"]
4343

4444

45+

0 commit comments

Comments
 (0)