We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8d1907 commit dd8082eCopy full SHA for dd8082e
.github/workflows/build_and_scan_image.yml
@@ -13,8 +13,12 @@ jobs:
13
id-token: write
14
contents: read
15
16
-
+ # Clean up AWS credentials cache if any
17
+
18
steps:
19
+ - name: Clean up old AWS credentials
20
+ run: |
21
+ rm -rf ~/.aws
22
- name: Checkout this repository
23
uses: actions/checkout@v4
24
@@ -31,10 +35,7 @@ jobs:
31
35
file: ./Dockerfile
32
36
push: false
33
37
load: true
34
- # Clean up AWS credentials cache if any
- - name: Clean up old AWS credentials
- run: |
- rm -rf ~/.aws
38
39
40
41
# modify this block based on how you authenticate to AWS
0 commit comments