Skip to content

Commit 2081528

Browse files
changed token to GITHUB_TOKEN from REPO_ACCESS_TOKEN
1 parent f5c3caf commit 2081528

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/pipeline.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
uses: gitleaks/gitleaks-action@v2
5454
env:
5555
# Gitleaks scans for sensitive data in the codebase
56-
GITHUB_TOKEN: ${{ secrets.REPO_ACCESS_TOKEN }}
56+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5757

5858
# Run Code Lint
5959
code-lint:
@@ -74,7 +74,7 @@
7474
uses: super-linter/[email protected]
7575
env:
7676
# Super-linter checks code for stylistic and syntactical errors
77-
GITHUB_TOKEN: ${{ secrets.REPO_ACCESS_TOKEN }}
77+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7878

7979
# Check Dependencies
8080
check-dependencies:
@@ -133,4 +133,4 @@
133133
# Inserts docs into README
134134
output-method: inject
135135
env:
136-
token: ${{ secrets.REPO_ACCESS_TOKEN }}
136+
token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)