From b323bf98a207ba600be6f5b0f3a88487e872d156 Mon Sep 17 00:00:00 2001 From: "andrii.k" Date: Mon, 15 Jul 2024 19:00:17 +0300 Subject: [PATCH] update actions --- .github/workflows/release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b077114..05e07bc 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -21,17 +21,17 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up Go - uses: actions/setup-go@v4 + uses: actions/setup-go@v5 with: - go-version: 1.20 + go-version: 1.22 - name: Build binary run: | mkdir -p bin - go mod tidy + go get . GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }} go build -o bin/ssm-${{ matrix.goos }}-${{ matrix.goarch }}${{ matrix.ext }} main.go - name: Upload binaries to release