3
0
Fork 0
mirror of https://code.forgejo.org/actions/setup-go synced 2025-01-16 03:56:38 +00:00

Remove the single quotes from go-version-file

This commit is contained in:
Masahiro Furudate 2024-02-18 20:03:16 +09:00
parent f4a0ed48b7
commit ca4321abee

View file

@ -194,7 +194,7 @@ steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: 'path/to/go.mod'
go-version-file: path/to/go.mod
- run: go version
```