Skip to content

Bump github.com/aws/aws-sdk-go-v2/service/s3 from 1.66.3 to 1.97.3 #128

Bump github.com/aws/aws-sdk-go-v2/service/s3 from 1.66.3 to 1.97.3

Bump github.com/aws/aws-sdk-go-v2/service/s3 from 1.66.3 to 1.97.3 #128

Workflow file for this run

name: Go
on:
pull_request:
branches:
- main
- release-*
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Install system deps
run: 'sudo apt update && sudo apt install -y libgpgme-dev libbtrfs-dev libdevmapper-dev'
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: go.mod
- name: Tidy
run: make tidy
- name: Vet
run: make vet
- name: Format
run: make fmt
- name: Run golangci linting checks
run: make lint
- name: Test
run: make cover