Skip to content

Commit

Permalink
build(go.mod): remove patch version from go directive
Browse files Browse the repository at this point in the history
* actions/setup-go#458
* move web component build inside Dockerfile
  • Loading branch information
JosephKav committed Apr 15, 2024
1 parent fc7fa8b commit e35f66f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/build-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,6 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- name: Build web components
run: make web

- name: Set outputs
id: vars
run: |
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ COPY . /build/
WORKDIR /build/

ARG BUILD_VERSION="development"
RUN make BUILD_VERSION=${BUILD_VERSION} go-build
RUN make BUILD_VERSION=${BUILD_VERSION} build
RUN chmod 755 /build/argus
RUN chmod 755 /build/healthcheck

Expand Down
4 changes: 3 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
module github.com/release-argus/Argus

go 1.22.0
go 1.22

toolchain go1.22.0

require (
github.com/Masterminds/semver/v3 v3.2.1
Expand Down

0 comments on commit e35f66f

Please sign in to comment.