Skip to content

Commit ab0518b

Browse files
committed
Set permissions for results directory in workflow
Added a step to set permissions to 777 for the results directory in the RapiDAST GitHub Actions workflow to ensure write access for subsequent steps.
1 parent a067610 commit ab0518b

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/rapidast.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,9 @@ jobs:
103103
echo "Final RapiDAST configuration:"
104104
cat rapidast-config.yml
105105
- name: Create results directory
106-
run: mkdir -p results
106+
run: |
107+
mkdir -p results
108+
chmod 777 results
107109
108110
- name: Run RapiDAST scan
109111
id: rapidast

0 commit comments

Comments
 (0)