diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 8dc1365..75c6109 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -27,7 +27,7 @@ jobs: id: app uses: actions/create-github-app-token@v3 with: - app-id: ${{ vars.HOUSEKEEPING_BOT_APP_ID }} + client-id: ${{ vars.HOUSEKEEPING_BOT_APP_ID }} private-key: ${{ secrets.HOUSEKEEPING_BOT_PRIVATE_KEY }} owner: ${{ github.repository_owner }} @@ -91,7 +91,7 @@ jobs: uses: actions/create-github-app-token@v3 with: owner: ${{ github.repository_owner }} - app-id: ${{ vars.HOUSEKEEPING_BOT_APP_ID }} + client-id: ${{ vars.HOUSEKEEPING_BOT_APP_ID }} private-key: ${{ secrets.HOUSEKEEPING_BOT_PRIVATE_KEY }} - name: Checkout code @@ -148,7 +148,7 @@ jobs: uses: actions/create-github-app-token@v3 with: owner: ${{ github.repository_owner }} - app-id: ${{ vars.HOUSEKEEPING_BOT_APP_ID }} + client-id: ${{ vars.HOUSEKEEPING_BOT_APP_ID }} private-key: ${{ secrets.HOUSEKEEPING_BOT_PRIVATE_KEY }} - name: Publish release diff --git a/.github/workflows/update-deps-cargo.yml b/.github/workflows/update-deps-cargo.yml index c57f82e..6dc7c6d 100644 --- a/.github/workflows/update-deps-cargo.yml +++ b/.github/workflows/update-deps-cargo.yml @@ -13,7 +13,7 @@ jobs: uses: actions/create-github-app-token@v3 with: owner: ${{ github.repository_owner }} - app-id: ${{ vars.HOUSEKEEPING_BOT_APP_ID }} + client-id: ${{ vars.HOUSEKEEPING_BOT_APP_ID }} private-key: ${{ secrets.HOUSEKEEPING_BOT_PRIVATE_KEY }} - name: Update Cargo Dependencies diff --git a/.github/workflows/update-deps-github-actions.yml b/.github/workflows/update-deps-github-actions.yml index 8d9a045..e149731 100644 --- a/.github/workflows/update-deps-github-actions.yml +++ b/.github/workflows/update-deps-github-actions.yml @@ -13,7 +13,7 @@ jobs: uses: actions/create-github-app-token@v3 with: owner: ${{ github.repository_owner }} - app-id: ${{ vars.HOUSEKEEPING_BOT_APP_ID }} + client-id: ${{ vars.HOUSEKEEPING_BOT_APP_ID }} private-key: ${{ secrets.HOUSEKEEPING_BOT_PRIVATE_KEY }} - name: Update GitHub Actions diff --git a/wrapper/src/proxy.rs b/wrapper/src/proxy.rs index dc04eb1..783872a 100644 --- a/wrapper/src/proxy.rs +++ b/wrapper/src/proxy.rs @@ -6,9 +6,10 @@ //! completes, and returns the final result synchronously. //! - OPTIONS requests return an empty 200 for CORS preflight. -use crate::config; use std::error::Error; +use crate::config; + /// Reverse proxy state shared across all request handlers. #[derive(Clone)] pub struct Proxy {