We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b55aee3 commit 1ed7f68Copy full SHA for 1ed7f68
.github/workflows/ci.yaml
@@ -22,7 +22,7 @@ jobs:
22
go-version: ${{ env.DEFAULT_GO_VERSION }}
23
24
- name: Check out code into the Go module directory
25
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
26
27
- name: Unit Tests
28
run: make unit-test
@@ -43,7 +43,7 @@ jobs:
43
run: make build-docker-images
44
45
- name: Integration Tests
46
- if: github.event_name == 'push'
+ if: ${{ github.event_name == 'push' && !contains(github.ref, 'dependabot') }}
47
run: make integ-test
48
env:
49
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
0 commit comments