Skip to content

Commit

Permalink
Merge pull request #8 from BrandwatchLtd/CCTQ-159
Browse files Browse the repository at this point in the history
update for build warnings
  • Loading branch information
jaydanielsencision authored Oct 15, 2024
2 parents afb2d2e + f794da8 commit a832bd1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .github/workflows/build-deploy-pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@ jobs:
- name: Check out code into the Go module directory
uses: actions/checkout@v4

- name: Ensure go.sum exists
run: |
if [ ! -f go.sum ]; then
go mod tidy
fi
- name: Get dependencies
run: go mod download

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.13-alpine3.10 as build
FROM golang:1.13-alpine3.10 AS build

RUN apk add --no-cache --update git make

Expand Down

0 comments on commit a832bd1

Please sign in to comment.