From a10d347965031d49995a3342ec5e13d4717a577e Mon Sep 17 00:00:00 2001 From: caleblloyd Date: Tue, 9 Apr 2024 20:32:09 +0000 Subject: [PATCH] bump dependency release to 0.14.2 --- .github/workflows/release.yaml | 3 ++- cicd/Dockerfile | 4 ++-- cicd/tag-deps-version.txt | 2 ++ 3 files changed, 6 insertions(+), 3 deletions(-) create mode 100644 cicd/tag-deps-version.txt diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 68a7876c..63e5d7f9 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -1,5 +1,6 @@ name: Release on: + workflow_dispatch: push: tags: - v[0-9]+.[0-9]+.[0-9]+ @@ -13,7 +14,7 @@ jobs: fetch-depth: 0 - name: Setup Go - uses: actions/setup-go@v4 + uses: actions/setup-go@v5 with: go-version-file: go.mod diff --git a/cicd/Dockerfile b/cicd/Dockerfile index 3d4ff5b1..c3ccf33e 100644 --- a/cicd/Dockerfile +++ b/cicd/Dockerfile @@ -1,7 +1,7 @@ #syntax=docker/dockerfile-upstream:1.5 ARG GO_APP -FROM alpine:3.19 as deps +FROM alpine:3.19.1 as deps ARG GO_APP ARG GORELEASER_DIST_DIR=/go/src/dist @@ -28,7 +28,7 @@ RUN <