Skip to content

Commit 412133e

Browse files
authored
Fix two syntax errors in .github/actions/set-up-bazel (#1058)
Fix two syntax errors in the action definition: the presence of `permissions:` at the top level, and the use of a non-string default value for action inputs.
1 parent d932f1b commit 412133e

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

.github/actions/set-up-bazel/action.yaml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,12 @@ inputs:
2323
debug:
2424
description: 'Run with debugging options'
2525
required: false
26-
default: true
26+
default: 'true'
2727
bazel-version:
2828
description: 'Version of Bazel to use:'
2929
required: false
3030
default: ''
3131

32-
permissions:
33-
actions: write
34-
contents: read
35-
3632
runs:
3733
using: 'composite'
3834
steps:

0 commit comments

Comments
 (0)