From 875186ee248965690145152a397d7c3f03e189cc Mon Sep 17 00:00:00 2001 From: jamesread Date: Sun, 13 Nov 2022 13:34:14 +0400 Subject: [PATCH] cicd: Actions version bump --- .github/workflows/build-snapshot.yml | 7 +++++++ .github/workflows/build-tag.yml | 11 +++++++++-- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-snapshot.yml b/.github/workflows/build-snapshot.yml index 1d94948f..d4cddc6e 100644 --- a/.github/workflows/build-snapshot.yml +++ b/.github/workflows/build-snapshot.yml @@ -18,10 +18,17 @@ jobs: image: tonistiigi/binfmt:latest platforms: arm64,arm + - name: Setup node + uses: actions/setup-node@v3 + with: + cache: 'npm' + cache-dependency-path: webui/package-lock.json + - name: Setup Go uses: actions/setup-go@v3 with: go-version: '>=1.18.0' + cache: true - name: grpc run: make grpc diff --git a/.github/workflows/build-tag.yml b/.github/workflows/build-tag.yml index e3ad443d..70ff4a7c 100644 --- a/.github/workflows/build-tag.yml +++ b/.github/workflows/build-tag.yml @@ -19,10 +19,17 @@ jobs: image: tonistiigi/binfmt:latest platforms: arm64,arm + - name: Setup node + uses: actions/setup-node@v3 + with: + cache: 'npm' + cache-dependency-path: webui/package-lock.json + - name: Setup Go - uses: actions/setup-go@v2 + uses: actions/setup-go@v3 with: - go-version: '^1.16.0' + go-version: '^1.18.0' + cache: true - name: Login to Docker Hub uses: docker/login-action@v1