Skip to content

Bump github.com/aws/aws-sdk-go-v2/credentials from 1.13.40 to 1.13.41 #167

Bump github.com/aws/aws-sdk-go-v2/credentials from 1.13.40 to 1.13.41

Bump github.com/aws/aws-sdk-go-v2/credentials from 1.13.40 to 1.13.41 #167

Workflow file for this run

name: "verify"
on:
pull_request:
branches: ["main"]
workflow_call:
inputs: {}
jobs:
changes:
runs-on: ubuntu-latest
outputs:
golang: ${{ steps.changes.outputs.golang == 'true' }}
docker: ${{ steps.changes.outputs.docker == 'true'}}
helm: ${{ steps.changes.outputs.helm == 'true' }}
steps:
# Checkout
- name: checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
# Determine changes
- uses: dorny/paths-filter@v2
id: changes
with:
filters: |
golang:
- '**/*.go'
- '**/testdata/**'
- 'go.mod'
- 'go.sum'
- '.golangci.yaml'
helm:
- 'charts/**'
- '.yamllint'
docker:
- 'Dockerfile'
- '.dockerignore'
- '.hadolint.yaml'
- 'buildinfo/*.sh'
golang:
needs: changes
uses: ./.github/workflows/verify-go.yaml
if: needs.changes.outputs.golang == 'true' || startsWith(github.ref, 'refs/tags/')
docker:
needs: changes
uses: ./.github/workflows/verify-docker.yaml
if: needs.changes.outputs.golang == 'true' || needs.changes.outputs.docker == 'true' || startsWith(github.ref, 'refs/tags/')
helm:
needs: changes
uses: ./.github/workflows/verify-helm.yaml
if: needs.changes.outputs.helm == 'true' || startsWith(github.ref, 'refs/tags/')