Skip to content

Commit 2006fb5

Browse files
renovate[bot]brb
authored andcommitted
chore(deps): update all dependencies
1 parent c1150b9 commit 2006fb5

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout code
17-
uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493
17+
uses: actions/checkout@71cf2267d89c5cb81562390fa70a37fa40b1305e
1818

1919
- name: Set up Go
2020
uses: actions/setup-go@faf52423ec0d44c58f68e83b614bfcd99dded66f
2121
with:
22-
go-version: 1.25.3
22+
go-version: 1.25.4
2323

2424
- name: Generate the artifacts
2525
run: make release

.github/workflows/test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ jobs:
1111
build:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493
14+
- uses: actions/checkout@71cf2267d89c5cb81562390fa70a37fa40b1305e
1515

1616
- name: Set up Go
1717
uses: actions/setup-go@faf52423ec0d44c58f68e83b614bfcd99dded66f
1818
with:
19-
go-version: 1.25.3
19+
go-version: 1.25.4
2020

2121
- name: Check module vendoring
2222
run: |
@@ -78,7 +78,7 @@ jobs:
7878
timeout-minutes: 60
7979
runs-on: ubuntu-latest
8080
steps:
81-
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493
81+
- uses: actions/checkout@71cf2267d89c5cb81562390fa70a37fa40b1305e
8282

8383
- name: Derive kernel version
8484
id: kernel
@@ -105,12 +105,12 @@ jobs:
105105
fi
106106
107107
- name: Retrieve stored pwru executable
108-
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53
108+
uses: actions/download-artifact@f093f21ca4cfa7c75ccbbc2be54da76a0c7e1f05
109109
with:
110110
name: pwru
111111

112112
- name: Retrieve stored test-app executable
113-
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53
113+
uses: actions/download-artifact@f093f21ca4cfa7c75ccbbc2be54da76a0c7e1f05
114114
with:
115115
name: test-app
116116

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ARG BUILDPLATFORM
2-
FROM --platform=$BUILDPLATFORM docker.io/library/golang:1.25.3 AS build
2+
FROM --platform=$BUILDPLATFORM docker.io/library/golang:1.25.4 AS build
33

44
ARG TARGETARCH
55
RUN gcc_pkg=$(if [ "${TARGETARCH}" = "arm64" ]; then echo "aarch64"; else echo "x86-64"; fi) && \

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ TEST_TIMEOUT ?= 5s
1717
.DEFAULT_GOAL := pwru
1818

1919
# renovate: datasource=docker depName=golang
20-
GO_IMAGE_VERSION = 1.25.3
21-
GO_IMAGE_SHA = sha256:6bac879c5b77e0fc9c556a5ed8920e89dab1709bd510a854903509c828f67f96
20+
GO_IMAGE_VERSION = 1.25.4
21+
GO_IMAGE_SHA = sha256:5d73b7b83dd6e0258ff62832c93b6ea208fbb7727985d265fb49f75f81fc3d1f
2222

2323
## Build the GO binary
2424
pwru: libpcap/libpcap.a

0 commit comments

Comments
 (0)