Skip to content

Commit

Permalink
chore(pipelines): fix access token for cancel previous (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
portellaa authored Jun 20, 2022
1 parent b9286e0 commit 1d450cd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/prereleased.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- uses: ydataai/[email protected]
with:
ignore_sha: true
access_token: ${{ secrets.ACCESS_TOKEN }}
access_token: ${{ github.token }}


prepare:
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
${{ runner.os }}-spm-
- name: Login to GitHub Registry
uses: docker/login-action@v1
uses: docker/login-action@v2
with:
registry: ${{ env.GHCR_REGISTRY }}
username: ${{ env.GHCR_USERNAME }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- uses: ydataai/[email protected]
with:
ignore_sha: true
access_token: ${{ secrets.ACCESS_TOKEN }}
access_token: ${{ github.token }}

validate:
name: Validate
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/released.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- uses: ydataai/[email protected]
with:
ignore_sha: true
access_token: ${{ secrets.ACCESS_TOKEN }}
access_token: ${{ github.token }}


prepare:
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:

steps:
- name: Login to GitHub Registry
uses: docker/login-action@v1
uses: docker/login-action@v2
with:
registry: ${{ env.GHCR_REGISTRY }}
username: ${{ env.GHCR_USERNAME }}
Expand Down

0 comments on commit 1d450cd

Please sign in to comment.