Skip to content
This repository was archived by the owner on Jul 29, 2026. It is now read-only.

Bump github.com/aws/aws-sdk-go-v2/service/codeartifact from 1.34.4 to 1.35.1 #1082

Bump github.com/aws/aws-sdk-go-v2/service/codeartifact from 1.34.4 to 1.35.1

Bump github.com/aws/aws-sdk-go-v2/service/codeartifact from 1.34.4 to 1.35.1 #1082

Workflow file for this run

on:
push:
branches:
- main
pull_request:
branches:
- main
name: Unit tests
env:
GOFLAGS: "-buildvcs=false"
jobs:
test:
name: Test
runs-on: ubuntu-latest
container: golang:latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install dependencies
run: |
go install honnef.co/go/tools/cmd/staticcheck@latest
- name: Lint
run: |
staticcheck ./...
go vet ./...
- name: Run unit tests
run: go test ./...