diff options
author | Jason Song <i@wolfogre.com> | 2023-03-30 22:33:17 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-30 22:33:17 +0800 |
commit | 964a057a76793c32c81394505e2f480a4bf40d0d (patch) | |
tree | ff1cb54f30b43741c4a8c881ca0f2f0a7555e0c5 /go.mod | |
parent | aa4d1d94f79e8edd9fa9ff2813fea12b085b2cae (diff) | |
download | gitea-964a057a76793c32c81394505e2f480a4bf40d0d.tar.gz gitea-964a057a76793c32c81394505e2f480a4bf40d0d.zip |
Fix checks for `needs` in Actions (#23789)
Fix:
- https://gitea.com/gitea/act_runner/issues/77
- https://gitea.com/gitea/act_runner/issues/81
Before:
<img width="1489" alt="image"
src="https://user-images.githubusercontent.com/9418365/228501567-f752cf87-a7ed-42c6-8f3d-ba741795c1fe.png">
Highlights:
- Upgrade act to make things doable, related to
- https://gitea.com/gitea/act/pulls/32
- https://gitea.com/gitea/act/pulls/33
- https://gitea.com/gitea/act/pulls/35
- Make `needs` works
- Sort jobs in the original order in the workflow files
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -289,7 +289,7 @@ replace github.com/shurcooL/vfsgen => github.com/lunny/vfsgen v0.0.0-20220105142 replace github.com/blevesearch/zapx/v15 v15.3.6 => github.com/zeripath/zapx/v15 v15.3.6-alignment-fix -replace github.com/nektos/act => gitea.com/gitea/act v0.243.1 +replace github.com/nektos/act => gitea.com/gitea/act v0.243.2-0.20230329055922-5e76853b55ab exclude github.com/gofrs/uuid v3.2.0+incompatible |