# acr-scan **Repository Path**: aliyun/acr-scan ## Basic Information - **Project Name**: acr-scan - **Description**: Scan Docker images in ACR - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-05-08 - **Last Updated**: 2025-08-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Scan Docker images in Alibaba Cloud Container Registry Use this GitHub Action to scan Docker images in [Alibaba Cloud Container Registry](https://www.aliyun.com/product/acr). Scan image in ACR default instance ```yaml - uses: aliyun/acr-scan@v1 with: region-id: '' # example: cn-hangzhou access-key-id: '' access-key-secret: '' repository: '' # example: test/nginx tag: '' # example: latest ``` Or scan image in specific ACR EE instance ```yaml - uses: aliyun/acr-scan@v1 with: region-id: '' # example: cn-hangzhou access-key-id: '' access-key-secret: '' instance-id: '' repository: '' # example: test/nginx tag: '' # example: latest ``` Refer to the action metadata file for details about all the inputs: [action.yml](https://github.com/aliyun/acr-scan/blob/master/action.yml) ### Prerequisite Get the access-key-id and access-key-secret of Alibaba Cloud, and add them as [secrets](https://developer.github.com/actions/managing-workflows/storing-secrets/) in the GitHub repository.