From dedf3ffa18d0b8f3bd13ded267572248760e988d Mon Sep 17 00:00:00 2001 From: Gwynne Raskind Date: Thu, 2 Nov 2023 14:02:42 -0500 Subject: [PATCH 1/2] Switch to official app token action --- .github/workflows/auto-template-creation.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/auto-template-creation.yml b/.github/workflows/auto-template-creation.yml index 179d920..159a8eb 100644 --- a/.github/workflows/auto-template-creation.yml +++ b/.github/workflows/auto-template-creation.yml @@ -47,11 +47,12 @@ jobs: steps: - name: Get token id: get-token - uses: tibdex/github-app-token@v1 + uses: actions/create-github-app-token@v1 with: - app_id: ${{ vars.PENNY_APP_ID }} - private_key: ${{ secrets.PENNY_APP_PRIVATE_KEY }} - repository: vapor/${{ matrix.repository }} + app-id: ${{ vars.PENNY_APP_ID }} + private-key: ${{ secrets.PENNY_APP_PRIVATE_KEY }} + owner: vapor + repositories: ${{ matrix.repository }} - name: Get cached toolbox uses: actions/cache/restore@v3 with: From 6fa20de8a04c49277a285db0c2d445fc395860f5 Mon Sep 17 00:00:00 2001 From: Gwynne Raskind Date: Thu, 2 Nov 2023 14:04:39 -0500 Subject: [PATCH 2/2] Add Dependabot config --- .github/dependabot.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..998a0eb --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,10 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" + groups: + dependencies: + patterns: + - "*"