Skip to content

deps(go): bump github.com/aws/smithy-go from 1.20.3 to 1.20.4 #1968

deps(go): bump github.com/aws/smithy-go from 1.20.3 to 1.20.4

deps(go): bump github.com/aws/smithy-go from 1.20.3 to 1.20.4 #1968

Workflow file for this run

name: Build
on:
push:
branches: [ main ]
pull_request:
# only run on PRs targeting main
branches: [ main ]
permissions:
contents: read
jobs:
linux-build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
goarch: [ '386', 'amd64' ]
container:
image: ghcr.io/hairyhenderson/gomplate-ci-build
steps:
- run: |
git config --global user.email "[email protected]"
git config --global user.name "Someone"
- uses: actions/checkout@v4
- run: make test GOARCH=${{ matrix.goarch }}
fscli-build:
runs-on: ubuntu-latest
strategy:
matrix:
platform: [ linux-amd64, linux-arm-v7, linux-arm64, linux-ppc64le, darwin-amd64, darwin-arm64, windows-amd64.exe ]
container:
image: ghcr.io/hairyhenderson/gomplate-ci-build:latest
steps:
- uses: actions/checkout@v4
- name: Build fscli
run: |
make bin/fscli_${{ matrix.platform }}
windows-build:
runs-on: windows-latest
env:
TMP: D:\a\tmp
steps:
- run: pwd
- run: |
git config --global user.email "[email protected]"
git config --global user.name "Someone"
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- run: make test