Bump github.com/aws/aws-sdk-go-v2/service/sts from 1.28.6 to 1.28.7 #567
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build binary | |
on: [push, pull_request] | |
env: | |
GOLANG_VERSION: '1.20.x' | |
jobs: | |
make_build: | |
name: Build | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
arch: ['amd64', 'arm64'] | |
fail-fast: true | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ env.GOLANG_VERSION }} | |
cache: false | |
id: go | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v4 | |
- name: Get dependencies | |
run: | | |
go get -v -t -d ./... | |
- name: Build and test with Make | |
run: | | |
make ci-build platform="${{ runner.os }}" arch="${{ matrix.arch }}" | |
make test | |
- name: Tar the artifacts | |
run: tar -cvf ${{ format('bin/federator-{0}-{1}.tar', runner.os, matrix.arch) }} ${{ format('bin/federator-{0}-{1}', runner.os, matrix.arch) }} | |
- name: Upload artifacts for the functional tests workflow | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ format('federator-{0}-{1}', runner.os, matrix.arch) }} | |
path: ${{ format('bin/federator-{0}-{1}.tar', runner.os, matrix.arch) }} |