-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #47 from grafana/46-fix-go-git-workdir-permissions
fix go-git workdir permissions
- Loading branch information
Showing
2 changed files
with
35 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
k6registry `v0.1.16` is here 🎉! | ||
|
||
This is an internal maintenance release. | ||
|
||
**Fix file/directory permissions** | ||
|
||
The `go-git` library used to checkout the source of extensions creates certain files readable only for the user. This makes it impossible to cache files created in GitHub action mode between workflow runs. | ||
|
||
After the git operations, the workdir file permissions now will be fixed. | ||
|
||
In the case of files, now the permission set to `0o644`, in the case of a direcotry to `0o755`. |