diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index de98578..368ad2a 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1 +1 @@ -* bitly/slothsgi +* @bitly/sloths diff --git a/.github/workflows/ci-docker.yaml b/.github/workflows/ci-docker.yaml index 032a0a0..f918090 100644 --- a/.github/workflows/ci-docker.yaml +++ b/.github/workflows/ci-docker.yaml @@ -6,7 +6,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Set Swap Space uses: pierotofy/set-swap-space@master diff --git a/.github/workflows/release-assets.yaml b/.github/workflows/release-assets.yaml index 2492a18..e7b7d40 100644 --- a/.github/workflows/release-assets.yaml +++ b/.github/workflows/release-assets.yaml @@ -12,14 +12,14 @@ jobs: release: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Set Swap Space uses: pierotofy/set-swap-space@master with: swap-size-gb: 12 - - uses: actions/setup-go@v5 + - uses: actions/setup-go@v6 with: go-version-file: "./go.mod" check-latest: true diff --git a/Dockerfile b/Dockerfile index 077daa9..442d24c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ ############################################# # Build ############################################# -FROM --platform=$BUILDPLATFORM golang:1.24-alpine as build +FROM --platform=$BUILDPLATFORM golang:1.26-alpine as build RUN apk upgrade --no-cache --force RUN apk add --update build-base make git diff --git a/go.mod b/go.mod index 956afe1..328de8f 100644 --- a/go.mod +++ b/go.mod @@ -1,8 +1,6 @@ module github.com/webdevops/go-replace -go 1.24.0 - -toolchain go1.24.4 +go 1.26.0 require ( github.com/Masterminds/sprig/v3 v3.3.0