Skip to content

Commit

Permalink
Merge dependabot updates
Browse files Browse the repository at this point in the history
  • Loading branch information
jwkohnen committed Oct 9, 2023
7 parents b193d1f + 96dcb96 + bae9b76 + d0e7f8b + 17602ce + 1341b8d + eacbf39 commit 0e44210
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Check out source code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

- name: Build
uses: docker/build-push-action@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/golangci-lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- uses: actions/setup-go@v4
with:
go-version: 1.18
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,20 +14,20 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Check out source code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

- name: Login to Docker Hub
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Docker metadata action
id: meta
uses: docker/metadata-action@v4
uses: docker/metadata-action@v5
with:
images: |
jwkohnen/conntrack-stats-exporter
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM golang:1.20.5 as build
FROM golang:1.21.2 as build
WORKDIR /conntrack-stats-exporter
COPY go.mod go.sum ./
RUN go mod download
COPY . .
RUN go mod verify
RUN ./build.sh

FROM alpine:3.18.2
FROM alpine:3.18.4
COPY --from=build /conntrack-stats-exporter/conntrack-stats-exporter /usr/local/sbin/
RUN apk update && \
apk --no-cache upgrade && \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile-race
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.20.5 as build
FROM golang:1.21.2 as build
WORKDIR /conntrack-stats-exporter
COPY go.mod go.sum ./
RUN go mod download
Expand Down

0 comments on commit 0e44210

Please sign in to comment.