From 8a7bf7d565b6f96d54ce59017fa734bdb9a1f113 Mon Sep 17 00:00:00 2001 From: jamesread Date: Wed, 24 Aug 2022 14:44:10 +0100 Subject: [PATCH] cicd: upgrade github actions quite considerably --- .github/workflows/build-snapshot.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build-snapshot.yml b/.github/workflows/build-snapshot.yml index 69febed..3727f8f 100644 --- a/.github/workflows/build-snapshot.yml +++ b/.github/workflows/build-snapshot.yml @@ -11,34 +11,34 @@ jobs: - name: Set up QEMU id: qemu - uses: docker/setup-qemu-action@v1 + uses: docker/setup-qemu-action@v2 with: image: tonistiigi/binfmt:latest platforms: arm64,arm - name: Setup Go - uses: actions/setup-go@v2 + uses: actions/setup-go@v3 with: - go-version: '^1.16.0' + go-version: '>=1.18.0' - name: grpc run: make grpc - name: goreleaser - uses: goreleaser/goreleaser-action@v2 + uses: goreleaser/goreleaser-action@v3 with: distribution: goreleaser version: latest args: release --snapshot --rm-dist - name: Archive binaries - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3.1.0 with: name: dist path: dist/OliveTin*.* - name: Archive integration tests - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3.1.0 with: name: integration-tests path: integration-tests