Skip to content

Bump github.com/aws/aws-sdk-go from 1.54.19 to 1.55.5 #55

Bump github.com/aws/aws-sdk-go from 1.54.19 to 1.55.5

Bump github.com/aws/aws-sdk-go from 1.54.19 to 1.55.5 #55

Workflow file for this run

# Test to see if the Docker build process works
# Creates a GitHub release
on:
push:
branches-ignore:
- main
tags-ignore: # Ensure that we're not running this on our release tags - This will be an actual build.
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
name: Docker
jobs:
build_docker:
name: Test Build
runs-on: ubuntu-latest
services:
registry:
image: registry:2
ports:
- 5000:5000
steps:
- uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
driver-opts: network=host
- name: Build and push to local test registry
uses: docker/build-push-action@v6
with:
push: true
tags: localhost:5000/${{github.repository}}:${{github.sha}}