Skip to content

build(deps): bump github.com/aws/aws-sdk-go from 1.51.32 to 1.55.5 #647

build(deps): bump github.com/aws/aws-sdk-go from 1.51.32 to 1.55.5

build(deps): bump github.com/aws/aws-sdk-go from 1.51.32 to 1.55.5 #647

Workflow file for this run

name: Release
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
setup:
name: Setup
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup Go env
shell: bash
run: |
echo "GOPATH=${{ github.workspace }}/go" >> $GITHUB_ENV
echo "${{ github.workspace }}/go/bin" >> $GITHUB_PATH
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: 1.19.1
- name: Validate Go
run: |
cd tests
go vet
go fmt
release:
needs: setup
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 20
- name: Install dependencies
run: |
npm install --package-lock
npm ci
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release