forked from lthn/blockchain
Update workflow permissions to contents: write
Changed GitHub Actions workflow permissions from 'contents: read' to 'contents: write' for all build workflows. This allows workflows to perform write operations on repository contents, which may be required for publishing artifacts or releases.
This commit is contained in:
parent
6fa9487476
commit
23af6b9caa
5 changed files with 5 additions and 5 deletions
2
.github/workflows/build-linux-arm64.yml
vendored
2
.github/workflows/build-linux-arm64.yml
vendored
|
|
@ -1,6 +1,6 @@
|
|||
name: Linux
|
||||
permissions:
|
||||
contents: read
|
||||
contents: write
|
||||
on:
|
||||
workflow_call:
|
||||
inputs:
|
||||
|
|
|
|||
2
.github/workflows/build-linux-intel.yml
vendored
2
.github/workflows/build-linux-intel.yml
vendored
|
|
@ -1,6 +1,6 @@
|
|||
name: Linux
|
||||
permissions:
|
||||
contents: read
|
||||
contents: write
|
||||
on:
|
||||
workflow_call:
|
||||
inputs:
|
||||
|
|
|
|||
2
.github/workflows/build-macos-arm64.yml
vendored
2
.github/workflows/build-macos-arm64.yml
vendored
|
|
@ -1,6 +1,6 @@
|
|||
name: build-macos-arm64
|
||||
permissions:
|
||||
contents: read
|
||||
contents: write
|
||||
on:
|
||||
workflow_call:
|
||||
inputs:
|
||||
|
|
|
|||
2
.github/workflows/build-macos-intel.yml
vendored
2
.github/workflows/build-macos-intel.yml
vendored
|
|
@ -1,6 +1,6 @@
|
|||
name: build-macos-intel
|
||||
permissions:
|
||||
contents: read
|
||||
contents: write
|
||||
on:
|
||||
workflow_call:
|
||||
inputs:
|
||||
|
|
|
|||
2
.github/workflows/build-windows-intel.yml
vendored
2
.github/workflows/build-windows-intel.yml
vendored
|
|
@ -1,6 +1,6 @@
|
|||
name: build-windows
|
||||
permissions:
|
||||
contents: read
|
||||
contents: write
|
||||
on:
|
||||
workflow_call:
|
||||
inputs:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue