From 9a08fc98d344f2f3ad284cfdf97a5462e673abd3 Mon Sep 17 00:00:00 2001 From: Masayuki Ishii Date: Wed, 3 Apr 2024 19:05:57 +0900 Subject: [PATCH 1/2] Update dependencies Signed-off-by: Masayuki Ishii --- .github/workflows/ci.yaml | 2 +- .github/workflows/mdbook.yaml | 4 ++-- Makefile | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 4d477ca..27804cb 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -5,7 +5,7 @@ on: branches: - 'main' env: - go-version: "1.21" + go-version: "1.22" jobs: test: name: Small tests diff --git a/.github/workflows/mdbook.yaml b/.github/workflows/mdbook.yaml index 8cabeae..5ba8505 100644 --- a/.github/workflows/mdbook.yaml +++ b/.github/workflows/mdbook.yaml @@ -11,7 +11,7 @@ jobs: steps: - uses: actions/checkout@v4 - run: make book - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: book path: docs/book @@ -26,7 +26,7 @@ jobs: 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/Makefile b/Makefile index 22b6098..a209ec8 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ BIN_DIR := $(shell pwd)/bin # Tool versions -MDBOOK_VERSION = 0.4.35 +MDBOOK_VERSION = 0.4.37 MDBOOK := $(BIN_DIR)/mdbook # Test tools From 84e02c404711ad5084a551e535d91c1e862e6510 Mon Sep 17 00:00:00 2001 From: Masayuki Ishii Date: Thu, 4 Apr 2024 09:28:06 +0900 Subject: [PATCH 2/2] reflect comment Signed-off-by: Masayuki Ishii --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 27804cb..4d5d691 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -12,7 +12,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: ${{ env.go-version }} - run: make test