The marvinpinto/action-automatic-releases action is currently unmaintained and displays several GitHub deprecation warnings during use. Switch over to using the forked crowbarmaster/GH-Automatic-Releases action which is an updated version of the original marvinpinto/action-automatic-releases action.
Signed-off-by: Mark Cave-Ayland mark.cave-ayland@ilande.co.uk --- .github/workflows/main.yml | 2 +- .github/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 626fc0a..a903697 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -94,7 +94,7 @@ jobs:
- name: Upload pre-release (upstream repository only) if: "${{ github.repository_owner == 'openbios' }}" - uses: "marvinpinto/action-automatic-releases@latest" + uses: "crowbarmaster/GH-Automatic-Releases@latest" with: repo_token: "${{ secrets.GITHUB_TOKEN }}" prerelease: true diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1fc587c..a8b8895 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -93,7 +93,7 @@ jobs: run: cd archive && zip -r ../openbios-multiarch-${{ github.ref_name }}.zip debug release && cd ..
- name: Upload release - uses: "marvinpinto/action-automatic-releases@latest" + uses: "crowbarmaster/GH-Automatic-Releases@latest" with: repo_token: "${{ secrets.GITHUB_TOKEN }}" prerelease: false