-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add ability to update the ssh public keys of an allocated machine (#446)
- Loading branch information
Showing
14 changed files
with
158 additions
and
141 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,15 +32,10 @@ jobs: | |
uses: actions/checkout@v3 | ||
|
||
- name: Set up Go 1.20 | ||
uses: actions/setup-go@v3 | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: '1.20.x' | ||
|
||
- name: setup buf | ||
uses: bufbuild/[email protected] | ||
with: | ||
github_token: ${{ github.token }} | ||
|
||
- name: generate proto and lint | ||
working-directory: proto | ||
run: make protoc | ||
|
@@ -57,7 +52,7 @@ jobs: | |
[ "${GITHUB_EVENT_NAME}" == 'push' ] && echo "tag=latest" >> $GITHUB_ENV || true | ||
- name: Build and push image | ||
uses: docker/build-push-action@v3 | ||
uses: docker/build-push-action@v4 | ||
with: | ||
context: . | ||
push: true | ||
|
@@ -70,7 +65,7 @@ jobs: | |
uses: actions/checkout@v3 | ||
|
||
- name: Set up Go 1.20 | ||
uses: actions/setup-go@v3 | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: '1.20.x' | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
FROM metalstack/builder:latest as builder | ||
|
||
FROM alpine:3.17 | ||
FROM alpine:3.18 | ||
RUN apk -U add ca-certificates | ||
COPY --from=builder /work/bin/metal-api /metal-api | ||
CMD ["/metal-api"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM alpine:3.17 | ||
FROM alpine:3.18 | ||
RUN apk add ca-certificates | ||
COPY bin/metal-api /metal-api | ||
ENTRYPOINT [ "/metal-api" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.