From 96fb8eae4b84f63829357164e40f33a33e85b08c Mon Sep 17 00:00:00 2001 From: Osiris-Team <59899645+Osiris-Team@users.noreply.github.com> Date: Sat, 4 Feb 2023 15:54:11 +0100 Subject: [PATCH 1/2] Update build-all.yml --- .github/workflows/build-all.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build-all.yml b/.github/workflows/build-all.yml index 2c3dfe7..4a4883c 100644 --- a/.github/workflows/build-all.yml +++ b/.github/workflows/build-all.yml @@ -15,6 +15,8 @@ on: jobs: create-release: runs-on: ubuntu-latest + permissions: + contents: write outputs: release_tag_name: ${{ env.release_tag_name }} build_meta: ${{ env.build_meta }} From bd579431167aeb697238e74386977422114931e6 Mon Sep 17 00:00:00 2001 From: Osiris-Team <59899645+Osiris-Team@users.noreply.github.com> Date: Tue, 7 Feb 2023 22:07:31 +0100 Subject: [PATCH 2/2] Update build-all.yml --- .github/workflows/build-all.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.github/workflows/build-all.yml b/.github/workflows/build-all.yml index 4a4883c..dbbf461 100644 --- a/.github/workflows/build-all.yml +++ b/.github/workflows/build-all.yml @@ -52,6 +52,8 @@ jobs: build-linux-amd64: runs-on: ubuntu-latest needs: create-release + permissions: + contents: write steps: - uses: actions/checkout@v3 - name: Set up QEMU @@ -77,6 +79,8 @@ jobs: build-linux-arm64: runs-on: ubuntu-latest needs: create-release + permissions: + contents: write steps: - uses: actions/checkout@v3 - name: Set up QEMU @@ -102,6 +106,8 @@ jobs: build-linux-arm: runs-on: ubuntu-latest needs: create-release + permissions: + contents: write steps: - uses: actions/checkout@v3 - name: Set up QEMU @@ -127,6 +133,8 @@ jobs: build-windows-amd64: runs-on: windows-2019 needs: create-release + permissions: + contents: write steps: - uses: actions/checkout@v3 - @@ -145,6 +153,8 @@ jobs: build-windows-i386: runs-on: windows-2019 needs: create-release + permissions: + contents: write steps: - uses: actions/checkout@v3 - @@ -163,6 +173,8 @@ jobs: build-windows-arm64: runs-on: windows-2019 needs: create-release + permissions: + contents: write steps: - uses: actions/checkout@v3 - @@ -181,6 +193,8 @@ jobs: build-macosx-amd64: runs-on: macos-12 needs: create-release + permissions: + contents: write steps: - uses: actions/checkout@v3 - @@ -246,6 +260,8 @@ jobs: build-macosx-arm64: runs-on: macos-12 needs: create-release + permissions: + contents: write steps: - uses: actions/checkout@v3 -