Skip to content

chore(deps): bump github.com/aws/aws-sdk-go-v2/feature/s3/transfermanager from 0.1.18 to 0.2.10 #1435

chore(deps): bump github.com/aws/aws-sdk-go-v2/feature/s3/transfermanager from 0.1.18 to 0.2.10

chore(deps): bump github.com/aws/aws-sdk-go-v2/feature/s3/transfermanager from 0.1.18 to 0.2.10 #1435

Workflow file for this run

name: build-test
on: [ pull_request ]
jobs:
validate-go-mod:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Setup Go
uses: actions/setup-go@v6
with:
go-version-file: go.mod
- name: setup env
run: |
echo "GOPATH=$(go env GOPATH)" >> $GITHUB_ENV
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
shell: bash
- run: go mod tidy
test-tgapi:
runs-on: ubuntu-latest
needs: validate-go-mod
steps:
- uses: actions/checkout@v6
- name: Setup Go
uses: actions/setup-go@v6
with:
go-version-file: go.mod
- name: setup env
run: |
echo "GOPATH=$(go env GOPATH)" >> $GITHUB_ENV
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
shell: bash
- run: make -C tgapi lint vet test
test-tgrun:
runs-on: ubuntu-latest
needs: validate-go-mod
steps:
- uses: actions/checkout@v6
- name: Setup Go
uses: actions/setup-go@v6
with:
go-version-file: go.mod
- name: setup env
run: |
echo "GOPATH=$(go env GOPATH)" >> $GITHUB_ENV
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
shell: bash
- run: make -C tgrun lint vet test
build-web:
runs-on: ubuntu-latest
needs: validate-go-mod
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version-file: .nvmrc
- run: make -C web deps lint build-staging
docker-image-tgapi:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: tgapi-build
run: |
docker build -f tgapi/deploy/Dockerfile \
--build-arg gitsha=${GITHUB_SHA:0:7} \
--build-arg buildtime="$(date --rfc-3339=seconds | sed 's/ /T/')" \
-t replicated/tgapi:${GITHUB_SHA:0:7} \
.
docker-image-tgrun:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: tgrun-build
run: |
docker build -f tgrun/Dockerfile \
--build-arg gitsha=${GITHUB_SHA:0:7} \
--build-arg buildtime="$(date --rfc-3339=seconds | sed 's/ /T/')" \
-t replicated/tgrun:latest \
-t replicated/tgrun:${GITHUB_SHA:0:7} \
.
build-test-success:
runs-on: ubuntu-latest
needs:
- validate-go-mod
- test-tgapi
- test-tgrun
- build-web
- docker-image-tgapi
- docker-image-tgrun
steps:
- run: echo "::notice ::build test success"