Skip to content

Bump github.com/aws/aws-sdk-go-v2 from 1.19.0 to 1.21.2 #165

Bump github.com/aws/aws-sdk-go-v2 from 1.19.0 to 1.21.2

Bump github.com/aws/aws-sdk-go-v2 from 1.19.0 to 1.21.2 #165

Workflow file for this run

name: Go
on:
push:
tags:
- "*"
branches: [main]
pull_request:
branches: [main]
permissions:
contents: write
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.20"
- name: Test
run: go test -v ./...
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v4
if: startsWith(github.ref, 'refs/tags/')
with:
version: latest
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}