File tree Expand file tree Collapse file tree 13 files changed +74
-72
lines changed
Expand file tree Collapse file tree 13 files changed +74
-72
lines changed Original file line number Diff line number Diff line change 2020 - run : git fetch --depth=1 origin +refs/tags/*:refs/tags/*
2121
2222 - name : install go
23- uses : actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2 .0
23+ uses : actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3 .0
2424 with :
2525 # use version from go.mod file
2626 go-version-file : ' go.mod'
Original file line number Diff line number Diff line change 4444 uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
4545
4646 - name : install go
47- uses : actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2 .0
47+ uses : actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3 .0
4848 with :
4949 # use version from go.mod file
5050 go-version-file : ' go.mod'
5353
5454 # Initializes the CodeQL tools for scanning.
5555 - name : Initialize CodeQL
56- uses : github/codeql-action/init@48ab28a6f5dbc2a99bf1e0131198dd8f1df78169 # v3.28.0
56+ uses : github/codeql-action/init@b6a472f63d85b9c78a3ac5e89422239fc15e9b3c # v3.28.1
5757 with :
5858 languages : ${{ matrix.language }}
5959 # If you wish to specify custom queries, you can do so here or in a config file.
6464 # Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
6565 # If this step fails, then you should remove it and run the build manually (see below)
6666 - name : Autobuild
67- uses : github/codeql-action/autobuild@48ab28a6f5dbc2a99bf1e0131198dd8f1df78169 # v3.28.0
67+ uses : github/codeql-action/autobuild@b6a472f63d85b9c78a3ac5e89422239fc15e9b3c # v3.28.1
6868
6969 # ℹ️ Command-line programs to run using the OS shell.
7070 # 📚 https://git.io/JvXDl
7878 # make release
7979
8080 - name : Perform CodeQL Analysis
81- uses : github/codeql-action/analyze@48ab28a6f5dbc2a99bf1e0131198dd8f1df78169 # v3.28.0
81+ uses : github/codeql-action/analyze@b6a472f63d85b9c78a3ac5e89422239fc15e9b3c # v3.28.1
Original file line number Diff line number Diff line change 1919 - run : git fetch --depth=1 origin +refs/tags/*:refs/tags/*
2020
2121 - name : Set up QEMU
22- uses : docker/setup-qemu-action@49b3bc8e6bdd4a60e6116a5414239cba5943d3cf # v3.2 .0
22+ uses : docker/setup-qemu-action@53851d14592bedcffcf25ea515637cff71ef929a # v3.3 .0
2323 with :
2424 platforms : ' arm64'
2525
Original file line number Diff line number Diff line change 2424 - run : git fetch --depth=1 origin +refs/tags/*:refs/tags/*
2525
2626 - name : install go
27- uses : actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2 .0
27+ uses : actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3 .0
2828 with :
2929 # use version from go.mod file
3030 go-version-file : ' go.mod'
4747 - run : git fetch --depth=1 origin +refs/tags/*:refs/tags/*
4848
4949 - name : Set up QEMU
50- uses : docker/setup-qemu-action@49b3bc8e6bdd4a60e6116a5414239cba5943d3cf # v3.2 .0
50+ uses : docker/setup-qemu-action@53851d14592bedcffcf25ea515637cff71ef929a # v3.3 .0
5151 with :
5252 platforms : ' arm64'
5353
Original file line number Diff line number Diff line change 2323 - run : git fetch --depth=1 origin +refs/tags/*:refs/tags/*
2424
2525 - name : install go
26- uses : actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2 .0
26+ uses : actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3 .0
2727 with :
2828 # use version from go.mod file
2929 go-version-file : ' go.mod'
Original file line number Diff line number Diff line change 2020 - run : git fetch --depth=1 origin +refs/tags/*:refs/tags/*
2121
2222 - name : install go
23- uses : actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2 .0
23+ uses : actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3 .0
2424 with :
2525 # use version from go.mod file
2626 go-version-file : ' go.mod'
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ GOARCH := $(shell go env GOARCH)
55GOOS := $(shell go env GOOS)
66BUILD_LDFLAGS := -s -w
77BUILD_LDFLAGS += -X github.com/target/flottbot/version.Version=${VERSION}
8- GOLANGCI_LINT_VERSION := "v1.62.2 "
8+ GOLANGCI_LINT_VERSION := "v1.63.4 "
99PACKAGES := $(shell go list ./... | grep -v /config-example/)
1010PLATFORM := "linux/amd64,linux/arm64"
1111
Original file line number Diff line number Diff line change 1- FROM --platform=${BUILDPLATFORM} docker.io/golang:1.23.4 -alpine@sha256:6c5c9590f169f77c8046e45c611d3b28fe477789acd8d3762d23d4744de69812 AS build
1+ FROM --platform=${BUILDPLATFORM} docker.io/golang:1.23.5 -alpine@sha256:47d337594bd9e667d35514b241569f95fb6d95727c24b19468813d596d5ae596 AS build
22
33ARG TARGETOS
44ARG TARGETARCH
@@ -19,7 +19,7 @@ RUN CGO_ENABLED=0 GOOS=${TARGETOS} GOARCH=${TARGETARCH} \
1919 go build -a -ldflags "-s -w -X github.com/target/flottbot/version.Version=${VERSION}" \
2020 -o flottbot ./cmd/flottbot
2121
22- FROM docker.io/alpine:3.21.0 @sha256:21dc6063fd678b478f57c0e13f47560d0ea4eeba26dfc947b2a4f81f686b9f45
22+ FROM docker.io/alpine:3.21.2 @sha256:56fa17d2a7e7f168a043a2712e63aed1f8543aeafdcee47c58dcffe38ed51099
2323
2424ENV USERNAME=flottbot
2525ENV GROUP=flottbot
Original file line number Diff line number Diff line change 1- FROM --platform=${BUILDPLATFORM} docker.io/golang:1.23.4 -alpine@sha256:6c5c9590f169f77c8046e45c611d3b28fe477789acd8d3762d23d4744de69812 AS build
1+ FROM --platform=${BUILDPLATFORM} docker.io/golang:1.23.5 -alpine@sha256:47d337594bd9e667d35514b241569f95fb6d95727c24b19468813d596d5ae596 AS build
22
33ARG TARGETOS
44ARG TARGETARCH
@@ -19,7 +19,7 @@ RUN CGO_ENABLED=0 GOOS=${TARGETOS} GOARCH=${TARGETARCH} \
1919 go build -a -ldflags "-s -w -X github.com/target/flottbot/version.Version=${VERSION}" \
2020 -o flottbot ./cmd/flottbot
2121
22- FROM docker.io/golang:1.23.4 -alpine@sha256:6c5c9590f169f77c8046e45c611d3b28fe477789acd8d3762d23d4744de69812
22+ FROM docker.io/golang:1.23.5 -alpine@sha256:47d337594bd9e667d35514b241569f95fb6d95727c24b19468813d596d5ae596
2323
2424ENV USERNAME=flottbot
2525ENV GROUP=flottbot
Original file line number Diff line number Diff line change 1- FROM --platform=${BUILDPLATFORM} docker.io/golang:1.23.4 -alpine@sha256:6c5c9590f169f77c8046e45c611d3b28fe477789acd8d3762d23d4744de69812 AS build
1+ FROM --platform=${BUILDPLATFORM} docker.io/golang:1.23.5 -alpine@sha256:47d337594bd9e667d35514b241569f95fb6d95727c24b19468813d596d5ae596 AS build
22
33ARG TARGETOS
44ARG TARGETARCH
@@ -19,7 +19,7 @@ RUN CGO_ENABLED=0 GOOS=${TARGETOS} GOARCH=${TARGETARCH} \
1919 go build -a -ldflags "-s -w -X github.com/target/flottbot/version.Version=${VERSION}" \
2020 -o flottbot ./cmd/flottbot
2121
22- FROM docker.io/python:3.13.1-alpine@sha256:657dbdb20479a6523b46c06114c8fec7db448232f956a429d3cc0606d30c1b59
22+ FROM docker.io/python:3.13.1-alpine@sha256:b6f01a01e34091438a29b6dda4664199e34731fb2581ebb6fe255a2ebf441099
2323
2424ENV USERNAME=flottbot
2525ENV GROUP=flottbot
You can’t perform that action at this time.
0 commit comments