Skip to content

Bump github.com/aws/aws-sdk-go-v2/credentials from 1.19.7 to 1.19.8 #1323

Bump github.com/aws/aws-sdk-go-v2/credentials from 1.19.7 to 1.19.8

Bump github.com/aws/aws-sdk-go-v2/credentials from 1.19.7 to 1.19.8 #1323

Workflow file for this run

name: test
on:
push:
branches:
- master
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.24.x
- run: make test
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v5
with:
go-version: 1.24.x
- uses: actions/checkout@v6
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
acctest:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.24.x
- uses: actions/cache@v5
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Bring up kafka + zk
run: docker compose up -d --wait
- name: "Run tests"
run: sleep 10 && make testacc