snyk throwing EACCES with error code 13 when running snyk-linux code test
My pipeline was throwing EACCESS err 13 trying to spawn gradle when I ran snyk code test using SnykSecurityScan@1. I can see that snyk linux was successfully downloaded and installed. To resolve this, I set the folder permission to allow it to execute gradle.
chmod -R +x $(Build.SourceDirectory)
After that my snyk task was able to run successfully.
Comments