You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The super-linter.env currently has the following additions that are to be addressed in the future:
VALIDATE_GITHUB_ACTIONS=false
VALIDATE_SHELL_SHFMT=false
VALIDATE_YAML=false
Most of the linting for the above has been addressed with just a single issue remaining that blocks the linter from being enabled.
Copy file name to clipboardExpand all lines: .github/workflows/extra.yml
+13-7Lines changed: 13 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,12 @@ on:
18
18
- 'ansible/roles/lustre/**'
19
19
- '.github/workflows/extra.yml'
20
20
21
+
permissions:
22
+
contents: read
23
+
packages: write
24
+
# To report GitHub Actions status checks
25
+
statuses: write
26
+
21
27
jobs:
22
28
doca:
23
29
name: extra-build
@@ -44,7 +50,7 @@ jobs:
44
50
ARK_PASSWORD: ${{ secrets.ARK_PASSWORD }}
45
51
46
52
steps:
47
-
- uses: actions/checkout@v2
53
+
- uses: actions/checkout@v4
48
54
49
55
- name: Load current fat images into GITHUB_ENV
50
56
# see https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/workflow-commands-for-github-actions#example-of-a-multiline-string
0 commit comments