From 0e3dc5d145034763c2c18aae898fae1e4551b228 Mon Sep 17 00:00:00 2001 From: Sebastian Rollen Date: Fri, 23 Apr 2021 11:41:08 -0400 Subject: [PATCH] [skip ci] update actions --- .github/pull_request_template.md | 1 - .github/workflows/ci.yml | 2 +- .github/workflows/deploy.yml | 2 +- .github/workflows/release.yml | 2 +- 4 files changed, 3 insertions(+), 4 deletions(-) delete mode 100644 .github/pull_request_template.md diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md deleted file mode 100644 index 9202ef5..0000000 --- a/.github/pull_request_template.md +++ /dev/null @@ -1 +0,0 @@ -- [ ] Version has been bumped diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d901acc..66b4b79 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: - name: Cancel actions uses: styfle/cancel-workflow-action@0.8.0 with: - access_token: ${{ github.token }} + access_token: ${{ secrets.GH_TOKEN }} fmt: name: Rustfmt diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index f19f32f..393fe7a 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -11,7 +11,7 @@ jobs: - name: Cancel actions uses: styfle/cancel-workflow-action@0.8.0 with: - access_token: ${{ github.token }} + access_token: ${{ secrets.GH_TOKEN }} test: name: Test diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 24e502a..e859c83 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,4 +24,4 @@ jobs: with: allowUpdates: false tag: ${{ env.IMAGE_TAG }} - token: ${{ secrets.GITHUB_TOKEN }} + token: ${{ secrets.GH_TOKEN }}