Skip to content

Commit

Permalink
ci: update various other actions
Browse files Browse the repository at this point in the history
  • Loading branch information
joelrebel committed Jun 27, 2024
1 parent 6f7ddf3 commit 04969c8
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,13 @@ jobs:
uses: actions/checkout@v4

- name: Install Go
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version-file: go.mod

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ jobs:
name: install cosign
uses: sigstore/cosign-installer@main
-
uses: anchore/sbom-action/download-syft@v0.14.3
uses: anchore/sbom-action/download-syft@v0.16.0
-
name: Run GoReleaser
uses: goreleaser/goreleaser-action@v5
uses: goreleaser/goreleaser-action@v6
with:
version: latest
args: release --clean
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.19.0
FROM alpine:3.20.1
RUN apk -U add curl

ENTRYPOINT ["/usr/sbin/conditionorc"]
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile.builder
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.22-alpine3.19 AS build
FROM golang:1.22-alpine3.20 AS build

WORKDIR /go/src/github.com/metal-toolbox/conditionorc
COPY go.mod go.sum ./
Expand All @@ -21,7 +21,7 @@ RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o /usr/sbin/conditionorc \
-X ${LDFLAG_LOCATION}.AppVersion=${VERSION} \
-X ${LDFLAG_LOCATION}.BuildDate=${BUILD_DATE}"

FROM alpine:3.19.0
FROM alpine:3.20.1
RUN apk -U add curl

COPY --from=build /usr/sbin/conditionorc /usr/sbin/
Expand Down

0 comments on commit 04969c8

Please sign in to comment.