Update GitHub actions to use GITHUB_TOKEN

This commit is contained in:
Arjan H
2025-03-11 21:12:25 +01:00
parent bdcdbef34d
commit 18b7ffe1fe
3 changed files with 4 additions and 4 deletions

View File

@@ -92,7 +92,7 @@ jobs:
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.ACTION_PAT }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v6

View File

@@ -70,7 +70,7 @@ jobs:
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.ACTION_PAT }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push docker images
uses: docker/build-push-action@v6

View File

@@ -43,7 +43,7 @@ jobs:
id: changelog
uses: loopwerk/tag-changelog@v1
with:
token: ${{ secrets.ACTION_PAT }}
token: ${{ secrets.GITHUB_TOKEN }}
- name: Create release
uses: ncipollo/release-action@v1
@@ -51,4 +51,4 @@ jobs:
artifacts: "release/*"
body: ${{ steps.changelog.outputs.changes }}
draft: true
token: ${{ secrets.ACTION_PAT }}
token: ${{ secrets.GITHUB_TOKEN }}