Because the loader only uses github actions to perform CI runs, it is good to set
the 'read-all' only, helping harden the github actions runners from potentially
compromised access.
For more context
https://docs.github.com/en/actions/security-guides/security-hardening-for-github-actions
Fixes #1148
# limitations under the License.
#
# Author: Lenny Komow <lenny@lunarg.com>
+# Author: Charles Giessen <charles@lunarg.com>
name: CI Build
branches:
- main
+permissions: read-all
+
jobs:
linux:
runs-on: ${{matrix.os}}