Browse Source
Fix `checkout` action version (#6921)
- wasn't getting picked up when updating action due to being formatted as `#v6.0.0` instead of `# v6.0.0`
pull/6922/head
Daniel
1 day ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with
7 additions and
7 deletions
-
.github/workflows/build.yml
-
.github/workflows/check-templates.yml
-
.github/workflows/hadolint.yml
-
.github/workflows/release.yml
-
.github/workflows/trivy.yml
-
.github/workflows/typos.yml
-
.github/workflows/zizmor.yml
|
|
|
@ -62,7 +62,7 @@ jobs: |
|
|
|
|
|
|
|
# Checkout the repo |
|
|
|
- name: "Checkout" |
|
|
|
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 #v6.0.0 |
|
|
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 |
|
|
|
with: |
|
|
|
persist-credentials: false |
|
|
|
fetch-depth: 0 |
|
|
|
|
|
|
|
@ -20,7 +20,7 @@ jobs: |
|
|
|
steps: |
|
|
|
# Checkout the repo |
|
|
|
- name: "Checkout" |
|
|
|
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 #v6.0.0 |
|
|
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 |
|
|
|
with: |
|
|
|
persist-credentials: false |
|
|
|
# End Checkout the repo |
|
|
|
|
|
|
|
@ -40,7 +40,7 @@ jobs: |
|
|
|
# End Download hadolint |
|
|
|
# Checkout the repo |
|
|
|
- name: Checkout |
|
|
|
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 #v6.0.0 |
|
|
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 |
|
|
|
with: |
|
|
|
persist-credentials: false |
|
|
|
# End Checkout the repo |
|
|
|
|
|
|
|
@ -73,7 +73,7 @@ jobs: |
|
|
|
|
|
|
|
# Checkout the repo |
|
|
|
- name: Checkout |
|
|
|
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 #v6.0.0 |
|
|
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 |
|
|
|
# We need fetch-depth of 0 so we also get all the tag metadata |
|
|
|
with: |
|
|
|
persist-credentials: false |
|
|
|
|
|
|
|
@ -33,7 +33,7 @@ jobs: |
|
|
|
|
|
|
|
steps: |
|
|
|
- name: Checkout code |
|
|
|
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 #v6.0.0 |
|
|
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 |
|
|
|
with: |
|
|
|
persist-credentials: false |
|
|
|
|
|
|
|
|
|
|
|
@ -16,7 +16,7 @@ jobs: |
|
|
|
steps: |
|
|
|
# Checkout the repo |
|
|
|
- name: Checkout |
|
|
|
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 #v6.0.0 |
|
|
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 |
|
|
|
with: |
|
|
|
persist-credentials: false |
|
|
|
# End Checkout the repo |
|
|
|
|
|
|
|
@ -19,7 +19,7 @@ jobs: |
|
|
|
security-events: write # To write the security report |
|
|
|
steps: |
|
|
|
- name: Checkout repository |
|
|
|
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 #v6.0.0 |
|
|
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 |
|
|
|
with: |
|
|
|
persist-credentials: false |
|
|
|
|
|
|
|
|