bump compose-go to version v2.4.9

Signed-off-by: Guillaume Lours <705411+glours@users.noreply.github.com>
This commit is contained in:
Guillaume Lours 2025-03-13 16:00:20 +01:00
parent 13618756dc
commit b6f313b8a5
3 changed files with 4 additions and 4 deletions

View file

@ -106,7 +106,7 @@ func createTar(env string, config types.FileReferenceConfig) (bytes.Buffer, erro
value := []byte(env)
b := bytes.Buffer{}
tarWriter := tar.NewWriter(&b)
mode := uint32(0o444)
mode := types.FileMode(0o440)
if config.Mode != nil {
mode = *config.Mode
}