Skip to content

Commit 1ed7f68

Browse files
authored
fix gh action dependabot tests (aws#172)
1 parent b55aee3 commit 1ed7f68

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
go-version: ${{ env.DEFAULT_GO_VERSION }}
2323

2424
- name: Check out code into the Go module directory
25-
uses: actions/checkout@v2
25+
uses: actions/checkout@v3
2626

2727
- name: Unit Tests
2828
run: make unit-test
@@ -43,7 +43,7 @@ jobs:
4343
run: make build-docker-images
4444

4545
- name: Integration Tests
46-
if: github.event_name == 'push'
46+
if: ${{ github.event_name == 'push' && !contains(github.ref, 'dependabot') }}
4747
run: make integ-test
4848
env:
4949
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}

0 commit comments

Comments
 (0)