-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
Signed-off-by: Alex Ellis (OpenFaaS Ltd) <[email protected]>
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,7 @@ jobs: | |
- name: Install Go | ||
uses: actions/setup-go@master | ||
with: | ||
go-version: 1.21.x | ||
go-version: 1.22.x | ||
|
||
- name: Make all | ||
run: make all | ||
|
@@ -40,20 +40,20 @@ jobs: | |
run: echo "REPO_OWNER=$(echo ${{ github.repository_owner }} | tr '[:upper:]' '[:lower:]')" > $GITHUB_ENV | ||
|
||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v2 | ||
uses: docker/setup-qemu-action@v3 | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
uses: docker/setup-buildx-action@v3 | ||
|
||
- name: Login to Docker Registry | ||
uses: docker/login-action@v2 | ||
uses: docker/login-action@v3 | ||
with: | ||
username: ${{ github.repository_owner }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
registry: ghcr.io | ||
|
||
- name: Build and push | ||
id: docker_build | ||
uses: docker/build-push-action@v3 | ||
uses: docker/build-push-action@v5 | ||
with: | ||
context: ./ | ||
file: ./Dockerfile | ||
|
@@ -65,7 +65,7 @@ jobs: | |
ghcr.io/${{ env.REPO_OWNER }}/classic-watchdog:latest | ||
- name: Upload release binaries | ||
uses: alexellis/[email protected].0 | ||
uses: alexellis/[email protected].1 | ||
env: | ||
GITHUB_TOKEN: ${{ github.token }} | ||
with: | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,24 @@ | ||
module github.com/openfaas/classic-watchdog | ||
|
||
go 1.20 | ||
go 1.22 | ||
|
||
require ( | ||
github.com/openfaas/faas-middleware v1.2.4 | ||
github.com/prometheus/client_golang v1.17.0 | ||
github.com/prometheus/client_golang v1.19.1 | ||
) | ||
|
||
require ( | ||
github.com/beorn7/perks v1.0.1 // indirect | ||
github.com/cespare/xxhash/v2 v2.2.0 // indirect | ||
github.com/cespare/xxhash/v2 v2.3.0 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/golang-jwt/jwt/v5 v5.2.1 // indirect | ||
github.com/golang/protobuf v1.5.3 // indirect | ||
github.com/golang/protobuf v1.5.4 // indirect | ||
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect | ||
github.com/prometheus/client_model v0.4.1-0.20230718164431-9a2bf3000d16 // indirect | ||
github.com/prometheus/common v0.44.0 // indirect | ||
github.com/prometheus/procfs v0.11.1 // indirect | ||
github.com/prometheus/client_model v0.6.1 // indirect | ||
github.com/prometheus/common v0.54.0 // indirect | ||
github.com/prometheus/procfs v0.15.1 // indirect | ||
github.com/rakutentech/jwk-go v1.1.3 // indirect | ||
golang.org/x/crypto v0.0.0-20200323165209-0ec3e9974c59 // indirect | ||
golang.org/x/sys v0.11.0 // indirect | ||
google.golang.org/protobuf v1.31.0 // indirect | ||
golang.org/x/crypto v0.24.0 // indirect | ||
golang.org/x/sys v0.21.0 // indirect | ||
google.golang.org/protobuf v1.34.2 // indirect | ||
) |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
This file was deleted.
This file was deleted.
This file was deleted.