Skip to content

chore(deps): bump github.com/aws/aws-sdk-go from 1.53.0 to 1.54.3 #1647

chore(deps): bump github.com/aws/aws-sdk-go from 1.53.0 to 1.54.3

chore(deps): bump github.com/aws/aws-sdk-go from 1.53.0 to 1.54.3 #1647

Workflow file for this run

name: CI
# Run on PR
on:
pull_request:
types:
- opened
- edited
- synchronize
- reopened
jobs:
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
with:
submodules: true
# Build
- name: Build
run: make build
test:
needs: build
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
with:
submodules: true
# Run tests
- name: Tests
run: make test
# lint:
# # The type of runner that the job will run on
# runs-on: ubuntu-latest
# # Steps represent a sequence of tasks that will be executed as part of the job
# steps:
# # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
# - uses: actions/checkout@v3
# with:
# submodules: true
# - name: Set up Go
# uses: actions/setup-go@v3
# with:
# go-version: 1.17
# # Run linter
# - name: Lint
# run: make lint