1
0
mirror of https://github.com/go-task/task.git synced 2025-11-23 22:24:45 +02:00

refactor: migrate to the official yaml package (#2434)

The old package is long archived, but the YAML org forked it and will
officially maintain it from now on.

* Old: https://github.com/go-yaml/yaml
* New: https://github.com/yaml/go-yaml
This commit is contained in:
Andrey Nering
2025-11-11 16:49:37 -03:00
committed by GitHub
parent bf9dc3f662
commit ee99849b1d
25 changed files with 30 additions and 62 deletions

View File

@@ -1,7 +1,7 @@
package ast
import (
"gopkg.in/yaml.v3"
"go.yaml.in/yaml/v4"
"github.com/go-task/task/v3/errors"
)