diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 7349fd8..d6ed8b4 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v4 - - uses: actions/setup-go@v4 + - uses: actions/setup-go@v5 with: go-version-file: go.mod - run: make test @@ -19,7 +19,7 @@ jobs: runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v4 - - uses: actions/setup-go@v4 + - uses: actions/setup-go@v5 with: go-version-file: go.mod - run: make setup diff --git a/.github/workflows/mdbook.yaml b/.github/workflows/mdbook.yaml index 6ea5b2c..5ba8505 100644 --- a/.github/workflows/mdbook.yaml +++ b/.github/workflows/mdbook.yaml @@ -9,9 +9,9 @@ jobs: name: Build book runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: make book - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: book path: docs/book @@ -21,12 +21,12 @@ jobs: runs-on: ubuntu-22.04 needs: build steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: ref: gh-pages # do not remove helm chart related files if present - run: ls | grep -v -E "index.yaml|.*\.tgz" | xargs rm -rf - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: book - run: git add . diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index efc2a44..cf1ef69 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v4 - - uses: actions/setup-go@v4 + - uses: actions/setup-go@v5 with: go-version-file: "go.mod" - uses: docker/setup-qemu-action@v3 @@ -39,7 +39,7 @@ jobs: contents: write steps: - uses: actions/checkout@v4 - - uses: actions/setup-go@v4 + - uses: actions/setup-go@v5 with: go-version-file: "go.mod" - name: GoReleaser diff --git a/Dockerfile.cli b/Dockerfile.cli index a299919..906f3d8 100644 --- a/Dockerfile.cli +++ b/Dockerfile.cli @@ -1,4 +1,4 @@ -FROM ghcr.io/cybozu/golang:1.21-jammy as builder +FROM ghcr.io/cybozu/golang:1.22-jammy as builder WORKDIR /work COPY go.mod go.mod COPY go.sum go.sum diff --git a/Dockerfile.daemon b/Dockerfile.daemon index 35bb109..659e4fe 100644 --- a/Dockerfile.daemon +++ b/Dockerfile.daemon @@ -1,5 +1,5 @@ ARG FLATCAR_VERSION -FROM ghcr.io/cybozu/golang:1.21-jammy as builder +FROM ghcr.io/cybozu/golang:1.22-jammy as builder WORKDIR /work COPY go.mod go.mod diff --git a/Makefile.versions b/Makefile.versions index 9239373..d52bb2a 100644 --- a/Makefile.versions +++ b/Makefile.versions @@ -1,5 +1,5 @@ E2ETEST_K8S_VERSION := 1.27.1 # ref to https://github.com/orgs/flatcar/packages/container/package/flatcar-sdk-amd64 -FLATCAR_VERSION := 3602.0.0 -KIND_VERSION := 0.20.0 -KUSTOMIZE_VERSION := 5.1.0 +FLATCAR_VERSION := 3874.0.0 +KIND_VERSION := 0.22.0 +KUSTOMIZE_VERSION := 5.3.0 diff --git a/go.mod b/go.mod index 85fda9d..448d41d 100644 --- a/go.mod +++ b/go.mod @@ -1,8 +1,8 @@ module github.com/cybozu-go/necoperf -go 1.21 +go 1.22 -toolchain go1.21.1 +toolchain go1.22.1 require ( github.com/google/uuid v1.3.0