From 8be71e8c86b598e98de214d2c0ab7fe44e9ce4d1 Mon Sep 17 00:00:00 2001 From: Integer Limit <103940576+IntegerLimit@users.noreply.github.com> Date: Wed, 10 Jul 2024 11:01:05 +1000 Subject: [PATCH] Update Publish Workflow to Use Node 20 Actions --- .github/workflows/publish.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index acc1fa8c..45daec2d 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -40,11 +40,11 @@ jobs: steps: - name: Get Token id: token - uses: peter-murray/workflow-application-token-action@v2.1.0 + uses: actions/create-github-app-token@v1 with: - application_id: ${{ secrets.APP_ID }} - application_private_key: ${{ secrets.APP_KEY }} - organization: Nomi-CEu + app-id: ${{ secrets.APP_ID }} + private-key: ${{ secrets.APP_KEY }} + owner: Nomi-CEu - name: Checkout Repository uses: actions/checkout@v4 @@ -64,7 +64,7 @@ jobs: GITHUB_TAG: ${{ inputs.tag }} - name: Publish to GitHub - uses: softprops/action-gh-release@v1 + uses: softprops/action-gh-release@v2 with: files: "build/libs/*.jar" body_path: "build/changelog.md"