Skip to content

build(deps): bump github.com/aws/aws-sdk-go-v2/service/ecrpublic from 1.23.4 to 1.23.5 in /ecr-login #1031

build(deps): bump github.com/aws/aws-sdk-go-v2/service/ecrpublic from 1.23.4 to 1.23.5 in /ecr-login

build(deps): bump github.com/aws/aws-sdk-go-v2/service/ecrpublic from 1.23.4 to 1.23.5 in /ecr-login #1031

Workflow file for this run

name: Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
git-secrets:
runs-on: 'ubuntu-22.04'
steps:
- name: Pull latest awslabs/git-secrets repo
uses: actions/checkout@v4
with:
repository: awslabs/git-secrets
ref: 1.3.0
fetch-tags: true
path: git-secrets
- name: Install git secrets from source
run: sudo make install
working-directory: git-secrets
- uses: actions/checkout@v4
- name: Scan repository for git secrets
run: |
git secrets --register-aws
git secrets --scan-history
licensing:
runs-on: 'ubuntu-22.04'
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
- name: Install go-licenses
run: make get-deps
- name: Check licensing
run: make check-licenses
cross-compile:
runs-on: 'ubuntu-22.04'
steps:
- uses: actions/checkout@v4
- name: Cross-compile all variants
run: make all-variants-in-docker
unit-test:
strategy:
matrix:
go: ['1.19', '1.20', '1.21']
# Intentionally use specific versions instead of "latest" to
# make this build reproducible.
os: ['ubuntu-22.04', 'macos-12', 'windows-2022']
# Build all variants regardless of failures
fail-fast: false
name: unit-test (${{ matrix.os }} / Go ${{ matrix.go }})
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- run: make test