chore(deps): bump github.com/aws/aws-sdk-go-v2/feature/s3/manager from 1.15.9 to 1.15.11 #1665
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Integration tests | |
on: | |
push: | |
branches: ['main'] | |
pull_request: | |
branches: ['main'] | |
permissions: | |
contents: read | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
env: | |
IMAGE_REPO: 'localhost:5000' | |
REGISTRY: 'localhost:5000' | |
DOCKER_BUILDKIT: '0' | |
strategy: | |
fail-fast: false | |
matrix: | |
make-target: | |
- integration-test-layers | |
- integration-test-misc | |
- integration-test-run | |
- k8s-executor-build-push integration-test-k8s | |
steps: | |
- name: Maximize build space | |
uses: AdityaGarg8/remove-unwanted-software@v1 | |
with: | |
remove-android: 'true' | |
remove-dotnet: 'true' | |
remove-haskell: 'true' | |
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0 | |
with: | |
go-version: '1.20' | |
- uses: actions/checkout@b0e28b5ac45a892f91e7d036f8200cf5ed489415 # v3 | |
- uses: docker/setup-buildx-action@f95db51fddba0c2d1ec667646a06c2ce06100226 # v1 | |
- run: make install-container-diff k3s-setup | |
- run: make ${{ matrix.make-target }} |