Skip to content

Commit 093f6fb

Browse files
authored
Merge pull request #61 from reneleonhardt/chore/update-dependencies
chore: update dependencies
2 parents 9f85bb1 + 1c7b76d commit 093f6fb

6 files changed

Lines changed: 31 additions & 19 deletions

File tree

.dockerignore

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
1-
.github
2-
examples/
1+
*
2+
3+
!cmd
4+
!internal
5+
!go.mod
6+
!LICENSE

.github/dependabot.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,18 @@
11
# To get started with Dependabot version updates, you'll need to specify which
22
# package ecosystems to update and where the package manifests are located.
33
# Please see the documentation for all configuration options:
4-
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
4+
# https://docs.github.com/en/code-security/dependabot/working-with-dependabot/dependabot-options-reference
55

66
version: 2
77
updates:
8+
- package-ecosystem: "docker"
9+
directory: "/"
10+
schedule:
11+
interval: "weekly"
12+
- package-ecosystem: "github-actions"
13+
directory: "/"
14+
schedule:
15+
interval: "weekly"
816
- package-ecosystem: "gomod" # See documentation for possible values
917
directory: "/" # Location of package manifests
1018
schedule:

.github/workflows/docker-image-release.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,17 @@ jobs:
1717

1818
steps:
1919
- name: Checkout
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v5
2121

2222
- name: Run Gosec Security Scanner
2323
uses: securego/gosec@master
2424
with:
2525
args: ./...
2626

2727
- name: Set up Go
28-
uses: actions/setup-go@v5
28+
uses: actions/setup-go@v6
2929
with:
30-
go-version: '1.24.5'
30+
go-version: '1.25'
3131

3232
- name: Run Go tests
3333
run: go test ./...
@@ -37,9 +37,9 @@ jobs:
3737
run: echo "VERSION=${GITHUB_REF#refs/tags/}" >> "$GITHUB_OUTPUT"
3838

3939
- name: Install Cosign
40-
uses: sigstore/cosign-installer@v3.9.2
40+
uses: sigstore/cosign-installer@v3.10.0
4141
with:
42-
cosign-release: 'v2.5.3'
42+
cosign-release: 'v2.6.0'
4343

4444
- name: Set up Docker Buildx
4545
uses: docker/setup-buildx-action@v3
@@ -91,4 +91,4 @@ jobs:
9191
run: cosign sign --yes --recursive --key env://COSIGN_PRIVATE_KEY ghcr.io/wollomatic/socket-proxy:${{ steps.get_tag.outputs.VERSION }}@${{ steps.push-ghcr.outputs.digest }}
9292
env:
9393
COSIGN_PRIVATE_KEY: ${{ secrets.COSIGN_PRIVATE_KEY }}
94-
COSIGN_PASSWORD: ${{ secrets.COSIGN_PASSWORD }}
94+
COSIGN_PASSWORD: ${{ secrets.COSIGN_PASSWORD }}

.github/workflows/docker-image-testing.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,25 +18,25 @@ jobs:
1818

1919
steps:
2020
- name: Checkout
21-
uses: actions/checkout@v4
21+
uses: actions/checkout@v5
2222

2323
- name: Run Gosec Security Scanner
2424
uses: securego/gosec@master
2525
with:
2626
args: ./...
2727

2828
- name: Set up Go
29-
uses: actions/setup-go@v5
29+
uses: actions/setup-go@v6
3030
with:
31-
go-version: '1.24.5'
31+
go-version: '1.25'
3232

3333
- name: Run Go tests
3434
run: go test ./...
3535

3636
# - name: Install Cosign
37-
# uses: sigstore/cosign-installer@v3.9.2
37+
# uses: sigstore/cosign-installer@v3.10.0
3838
# with:
39-
# cosign-release: 'v2.5.3'
39+
# cosign-release: 'v2.6.0'
4040

4141
- name: Set up Docker Buildx
4242
uses: docker/setup-buildx-action@v3
@@ -69,7 +69,7 @@ jobs:
6969
ghcr.io/wollomatic/socket-proxy:testing-${{ github.sha }}
7070
7171
# - name: Build and push Docker Hub image
72-
# uses: docker/build-push-action@v5
72+
# uses: docker/build-push-action@v6
7373
# id: push-dockerhub
7474
# with:
7575
# context: .
@@ -87,7 +87,7 @@ jobs:
8787
# COSIGN_PASSWORD: ${{ secrets.COSIGN_PASSWORD }}
8888
#
8989
# - name: Build and push GHCR image
90-
# uses: docker/build-push-action@v5
90+
# uses: docker/build-push-action@v6
9191
# id: push-ghcr
9292
# with:
9393
# context: .
@@ -102,4 +102,4 @@ jobs:
102102
# run: cosign sign --yes --recursive --key env://COSIGN_PRIVATE_KEY ghcr.io/wollomatic/socket-proxy:testing-${{ github.sha }}@${{ steps.push-ghcr.outputs.digest }}
103103
# env:
104104
# COSIGN_PRIVATE_KEY: ${{ secrets.COSIGN_PRIVATE_KEY }}
105-
# COSIGN_PASSWORD: ${{ secrets.COSIGN_PASSWORD }}
105+
# COSIGN_PASSWORD: ${{ secrets.COSIGN_PASSWORD }}

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# syntax=docker/dockerfile:1
2-
FROM --platform=$BUILDPLATFORM golang:1.25.0-alpine3.22 AS build
2+
FROM --platform=$BUILDPLATFORM golang:1.25.1-alpine3.22 AS build
33
WORKDIR /application
44
COPY . ./
55
ARG TARGETOS

examples/docker-compose/dozzle/compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ services:
2424
- docker-proxynet
2525

2626
dozzle:
27-
image: amir20/dozzle:v6.4.2 # make sure you use the most recent version
27+
image: amir20/dozzle:v8.14 # make sure you use the most recent version
2828
user: 65534:65534
2929
read_only: true
3030
mem_limit: 256M

0 commit comments

Comments
 (0)