Skip to content

Commit 1a09302

Browse files
authored
Merge pull request #79 from alchemaxinc/dotkas/fix-token-deprecated-value
chore: app-id -> client-id
2 parents 0bcb9ff + f945c25 commit 1a09302

4 files changed

Lines changed: 7 additions & 6 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
id: app
2828
uses: actions/create-github-app-token@v3
2929
with:
30-
app-id: ${{ vars.HOUSEKEEPING_BOT_APP_ID }}
30+
client-id: ${{ vars.HOUSEKEEPING_BOT_APP_ID }}
3131
private-key: ${{ secrets.HOUSEKEEPING_BOT_PRIVATE_KEY }}
3232
owner: ${{ github.repository_owner }}
3333

@@ -91,7 +91,7 @@ jobs:
9191
uses: actions/create-github-app-token@v3
9292
with:
9393
owner: ${{ github.repository_owner }}
94-
app-id: ${{ vars.HOUSEKEEPING_BOT_APP_ID }}
94+
client-id: ${{ vars.HOUSEKEEPING_BOT_APP_ID }}
9595
private-key: ${{ secrets.HOUSEKEEPING_BOT_PRIVATE_KEY }}
9696

9797
- name: Checkout code
@@ -148,7 +148,7 @@ jobs:
148148
uses: actions/create-github-app-token@v3
149149
with:
150150
owner: ${{ github.repository_owner }}
151-
app-id: ${{ vars.HOUSEKEEPING_BOT_APP_ID }}
151+
client-id: ${{ vars.HOUSEKEEPING_BOT_APP_ID }}
152152
private-key: ${{ secrets.HOUSEKEEPING_BOT_PRIVATE_KEY }}
153153

154154
- name: Publish release

.github/workflows/update-deps-cargo.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
uses: actions/create-github-app-token@v3
1414
with:
1515
owner: ${{ github.repository_owner }}
16-
app-id: ${{ vars.HOUSEKEEPING_BOT_APP_ID }}
16+
client-id: ${{ vars.HOUSEKEEPING_BOT_APP_ID }}
1717
private-key: ${{ secrets.HOUSEKEEPING_BOT_PRIVATE_KEY }}
1818

1919
- name: Update Cargo Dependencies

.github/workflows/update-deps-github-actions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
uses: actions/create-github-app-token@v3
1414
with:
1515
owner: ${{ github.repository_owner }}
16-
app-id: ${{ vars.HOUSEKEEPING_BOT_APP_ID }}
16+
client-id: ${{ vars.HOUSEKEEPING_BOT_APP_ID }}
1717
private-key: ${{ secrets.HOUSEKEEPING_BOT_PRIVATE_KEY }}
1818

1919
- name: Update GitHub Actions

wrapper/src/proxy.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,10 @@
66
//! completes, and returns the final result synchronously.
77
//! - OPTIONS requests return an empty 200 for CORS preflight.
88
9-
use crate::config;
109
use std::error::Error;
1110

11+
use crate::config;
12+
1213
/// Reverse proxy state shared across all request handlers.
1314
#[derive(Clone)]
1415
pub struct Proxy {

0 commit comments

Comments
 (0)