Bump github.com/aws/aws-sdk-go-v2/service/iam from 1.11.0 to 1.22.5 #245
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: Validate Pull Request | |
on: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Set up Golang | |
uses: actions/setup-go@v1 | |
with: | |
go-version: 1.17 | |
- name: Check out source code | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- uses: dangoslen/changelog-enforcer@v3 | |
with: | |
skipLabels: dependencies | |
- uses: actions/cache@v2 | |
with: | |
path: ~/go/pkg/mod | |
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-go- | |
- name: Run tests | |
run: make | |
- name: Run Lint | |
uses: golangci/golangci-lint-action@v3 | |
with: | |
version: v1.46.2 | |
skip-pkg-cache: true | |
only-new-issues: true | |
github-token: ${{ github.token }} | |
k8s_integration_test: | |
name: Run k8s integration tests | |
runs-on: ubuntu-20.04 | |
needs: test | |
strategy: | |
fail-fast: false | |
matrix: | |
k8s_version: | |
- 1.22.4 | |
- 1.21.2 | |
- 1.20.7 | |
- 1.19.11 | |
steps: | |
- name: Set up Golang | |
uses: actions/setup-go@v1 | |
with: | |
go-version: 1.17 | |
- name: Check out source code | |
uses: actions/checkout@v2 | |
- name: Run k8s integration tests | |
run: make k8s-integration-test K8S_VERSION=${{ matrix.k8s_version }} | |
vault_integration_test: | |
name: Run Vault integration tests | |
runs-on: ubuntu-20.04 | |
needs: test | |
strategy: | |
fail-fast: false | |
matrix: | |
vault_version: | |
- 1.10.3 | |
- 1.9.6 | |
- 1.8.11 | |
- 1.7.10 | |
steps: | |
- name: Set up Golang | |
uses: actions/setup-go@v1 | |
with: | |
go-version: 1.17 | |
- name: Check out source code | |
uses: actions/checkout@v2 | |
- name: Run Vault integration tests | |
run: make vault-integration-test VAULT_VERSION=${{ matrix.vault_version }} |