Skip to content

Commit 7891e7c

Browse files
committed
fix: update GitHub App token secret reference in workflow files
1 parent f533584 commit 7891e7c

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/citus-package-all-platforms-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
uses: actions/create-github-app-token@v2
4040
with:
4141
app-id: ${{ vars.GH_APP_ID }}
42-
private-key: ${{ secrets.GITHUB_APP_PRIVATE_KEY }}
42+
private-key: ${{ secrets.GH_APP_KEY }}
4343
owner: citusdata
4444
repositories: |
4545
tools

.github/workflows/package-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
uses: actions/create-github-app-token@v2
2525
with:
2626
app-id: ${{ vars.GH_APP_ID }}
27-
private-key: ${{ secrets.GITHUB_APP_PRIVATE_KEY }}
27+
private-key: ${{ secrets.GH_APP_KEY }}
2828
owner: citusdata
2929
- name: Checkout
3030
uses: actions/checkout@v3

.github/workflows/packaging-methods-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
uses: actions/create-github-app-token@v2
1818
with:
1919
app-id: ${{ vars.GH_APP_ID }}
20-
private-key: ${{ secrets.GITHUB_APP_PRIVATE_KEY }}
20+
private-key: ${{ secrets.GH_APP_KEY }}
2121
owner: citusdata
2222
repositories: |
2323
tools

.github/workflows/publish-docker-image-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
uses: actions/create-github-app-token@v2
1919
with:
2020
app-id: ${{ vars.GH_APP_ID }}
21-
private-key: ${{ secrets.GITHUB_APP_PRIVATE_KEY }}
21+
private-key: ${{ secrets.GH_APP_KEY }}
2222
owner: citusdata
2323

2424
- name: Checkout repository

0 commit comments

Comments
 (0)