Skip to content

Commit 7b57d4a

Browse files
authored
Update token usage in deployment workflow
1 parent 2b8331d commit 7b57d4a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/deployment.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Checkout main repository
3030
uses: actions/checkout@v5
3131
with:
32-
token: ${{ secrets.PAT != '' && secrets.PAT || github.token }}
32+
token: ${{ github.token }}
3333
fetch-depth: 0 # get full history (so no need for "git fetch --unshallow")
3434

3535
# Configure git identity
@@ -44,7 +44,7 @@ jobs:
4444
with:
4545
repository: DIRACGrid/DIRAC
4646
path: ../DIRAC
47-
token: ${{ secrets.PAT != '' && secrets.PAT || github.token }}
47+
token: ${{ github.token }}
4848

4949
# Set up Python
5050
- uses: actions/setup-python@v6

0 commit comments

Comments
 (0)