Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,15 @@ jobs:
- name: Login to Amazon ECR
uses: aws-actions/amazon-ecr-login@062b18b96a7aff071d4dc91bc00c4c1a7945b076

# ECR Public has a per-IP ratelist for unauthenticated users, which is often hit on
# GitHub actions due to jobs sharing IPs - this ensures we don't get rate limited
- name: Login to Amazon ECR Public
uses: aws-actions/amazon-ecr-login@062b18b96a7aff071d4dc91bc00c4c1a7945b076
env:
AWS_REGION: us-east-1
with:
registry-type: public

- name: Scan Images
id: scan-images
# https://docs.github.com/en/actions/reference/workflows-and-actions/workflow-commands#example-of-a-multiline-string
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/janitor.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ permissions:
jobs:
janitor:
# Don't run on forked repos
if: ${{ github.repository == 'aws/csi-components-test' }}
if: ${{ github.repository == 'aws/csi-components' }}
runs-on: ubuntu-latest
steps:
- name: Set up Go
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/trivy-published.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ jobs:
# GitHub actions due to jobs sharing IPs - this ensures we don't get rate limited
- name: Login to Amazon ECR Public
uses: aws-actions/amazon-ecr-login@062b18b96a7aff071d4dc91bc00c4c1a7945b076
env:
AWS_REGION: us-east-1
with:
registry-type: public

Expand Down
Loading