Skip to content

Commit

Permalink
Merge pull request #21 from cybozu-go/verup-by-regular-update
Browse files Browse the repository at this point in the history
Update necoperf v0.1.1 by regular update
  • Loading branch information
takara9 authored Mar 14, 2024
2 parents 67a132f + 7d9ba2c commit 3a5438b
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/mdbook.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 .
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.cli
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.daemon
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 3 additions & 3 deletions Makefile.versions
Original file line number Diff line number Diff line change
@@ -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
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 3a5438b

Please sign in to comment.