Skip to content

Commit 0a46dea

Browse files
committed
fix(release-actions): changed files match
Signed-off-by: Emilien Escalle <emilien.escalle@escemi.com>
1 parent 91fe58b commit 0a46dea

16 files changed

+44
-6
lines changed

.github/workflows/__test-action-check-url-lighthouse.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ jobs:
1414
steps:
1515
- name: Arrange - Checkout
1616
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
17+
with:
18+
persist-credentials: false
1719

1820
- name: Act - Check URL Lighthouse
1921
id: check-url-lighthouse

.github/workflows/__test-action-check-url-ping.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ jobs:
2424
steps:
2525
- name: Arrange - Checkout
2626
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
27+
with:
28+
persist-credentials: false
2729

2830
- name: Setup - Configure mock server
2931
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0

.github/workflows/__test-action-deploy-argocd-manifest-files.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ jobs:
2121
TEST_EXPECTED_MANIFEST_FILE: tests/argocd-app-of-apps/ci/manifests/ci-test/test-app/expected.yml
2222
steps:
2323
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
24+
with:
25+
persist-credentials: false
2426

2527
- name: Arrange - Create test manifest files
2628
run: |

.github/workflows/__test-action-deploy-jekyll-jampack.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ jobs:
1616
steps:
1717
- name: Arrange - Checkout
1818
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
19+
with:
20+
persist-credentials: false
1921

2022
- name: Arrange - Create linked test pages
2123
run: |

.github/workflows/__test-action-deployment.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ jobs:
1414
deployments: write
1515
steps:
1616
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
17+
with:
18+
persist-credentials: false
1719

1820
- id: create-deployment
1921
uses: ./actions/deployment/create

.github/workflows/clean-deploy-argocd-app-of-apps.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,8 @@ jobs:
7272
core.setOutput("repository", repository);
7373
7474
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
75+
with:
76+
persist-credentials: false
7577

7678
# jscpd:ignore-start
7779
# FIXME: This is a workaround for having workflow actions. See https://github.com/orgs/community/discussions/38659
@@ -80,6 +82,7 @@ jobs:
8082

8183
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
8284
with:
85+
persist-credentials: false
8386
path: ./self-workflow
8487
repository: ${{ steps.oidc.outputs.job_workflow_repo_name_and_owner }}
8588
ref: ${{ steps.oidc.outputs.job_workflow_repo_ref }}
@@ -142,6 +145,7 @@ jobs:
142145
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
143146
if: always() && steps.oidc.outputs.job_workflow_repo_name_and_owner
144147
with:
148+
persist-credentials: false
145149
path: ./self-workflow
146150
repository: ${{ steps.oidc.outputs.job_workflow_repo_name_and_owner }}
147151
ref: ${{ steps.oidc.outputs.job_workflow_repo_ref }}

.github/workflows/clean-deploy.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,7 @@ jobs:
125125

126126
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
127127
with:
128+
persist-credentials: false
128129
path: ./self-workflow
129130
repository: ${{ steps.oidc.outputs.job_workflow_repo_name_and_owner }}
130131
ref: ${{ steps.oidc.outputs.job_workflow_repo_ref }}
@@ -179,6 +180,7 @@ jobs:
179180
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
180181
if: always() && steps.oidc.outputs.job_workflow_repo_name_and_owner
181182
with:
183+
persist-credentials: false
182184
path: ./self-workflow
183185
repository: ${{ steps.oidc.outputs.job_workflow_repo_name_and_owner }}
184186
ref: ${{ steps.oidc.outputs.job_workflow_repo_ref }}

.github/workflows/deploy-argocd-app-of-apps.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,8 @@ jobs:
140140
uri: ${{ steps.check-client-payload.outputs.chart }}
141141

142142
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
143+
with:
144+
persist-credentials: false
143145

144146
# FIXME: This is a workaround for having workflow actions. See https://github.com/orgs/community/discussions/38659
145147
# jscpd:ignore-start
@@ -148,6 +150,7 @@ jobs:
148150

149151
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
150152
with:
153+
persist-credentials: false
151154
path: ./self-workflow
152155
repository: ${{ steps.oidc.outputs.job_workflow_repo_name_and_owner }}
153156
ref: ${{ steps.oidc.outputs.job_workflow_repo_ref }}

.github/workflows/deploy-chart.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -349,6 +349,7 @@ jobs:
349349

350350
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
351351
with:
352+
persist-credentials: false
352353
path: ./self-workflow
353354
repository: ${{ steps.oidc.outputs.job_workflow_repo_name_and_owner }}
354355
ref: ${{ steps.oidc.outputs.job_workflow_repo_ref }}
@@ -457,6 +458,7 @@ jobs:
457458
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
458459
if: always() && steps.oidc.outputs.job_workflow_repo_name_and_owner
459460
with:
461+
persist-credentials: false
460462
path: ./self-workflow
461463
repository: ${{ steps.oidc.outputs.job_workflow_repo_name_and_owner }}
462464
ref: ${{ steps.oidc.outputs.job_workflow_repo_ref }}

.github/workflows/deploy-checks.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ jobs:
7878

7979
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
8080
with:
81+
persist-credentials: false
8182
path: ./self-workflow
8283
repository: ${{ steps.oidc.outputs.job_workflow_repo_name_and_owner }}
8384
ref: ${{ steps.oidc.outputs.job_workflow_repo_ref }}
@@ -101,6 +102,7 @@ jobs:
101102
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
102103
if: always() && steps.oidc.outputs.job_workflow_repo_name_and_owner
103104
with:
105+
persist-credentials: false
104106
path: ./self-workflow
105107
repository: ${{ steps.oidc.outputs.job_workflow_repo_name_and_owner }}
106108
ref: ${{ steps.oidc.outputs.job_workflow_repo_ref }}

0 commit comments

Comments
 (0)