File tree Expand file tree Collapse file tree 3 files changed +29
-3
lines changed Expand file tree Collapse file tree 3 files changed +29
-3
lines changed Original file line number Diff line number Diff line change 1+ name : Tag
2+
3+ on :
4+ workflow_dispatch :
5+ inputs :
6+ version :
7+ description : ' Release version (e.g. v0.1.0)'
8+ required : true
9+ message :
10+ description : ' Tag message'
11+ required : true
12+
13+ jobs :
14+ create-tag :
15+ runs-on : ubuntu-latest
16+
17+ steps :
18+ - name : Checkout
19+ uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
20+
21+ - name : Create Tag
22+ uses : negz/create-tag@39bae1e0932567a58c20dea5a1a0d18358503320 # v1
23+ with :
24+ version : ${{ github.event.inputs.version }}
25+ message : ${{ github.event.inputs.message }}
26+ token : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ require (
6464 go.uber.org/zap v1.27.0 // indirect
6565 golang.org/x/exp v0.0.0-20240909161429-701f63a606c0 // indirect
6666 golang.org/x/mod v0.21.0 // indirect
67- golang.org/x/net v0.29 .0 // indirect
67+ golang.org/x/net v0.33 .0 // indirect
6868 golang.org/x/oauth2 v0.22.0 // indirect
6969 golang.org/x/sync v0.10.0 // indirect
7070 golang.org/x/sys v0.28.0 // indirect
Original file line number Diff line number Diff line change @@ -224,8 +224,8 @@ golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn
224224golang.org/x/net v0.0.0-20190620200207-3b0461eec859 /go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s =
225225golang.org/x/net v0.0.0-20200226121028-0de0cce0169b /go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s =
226226golang.org/x/net v0.0.0-20201021035429-f5854403a974 /go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU =
227- golang.org/x/net v0.29 .0 h1:5ORfpBpCs4HzDYoodCDBbwHzdR5UrLBZ3sOnUJmFoHo =
228- golang.org/x/net v0.29 .0 /go.mod h1:gLkgy8jTGERgjzMic6DS9+SP0ajcu6Xu3Orq/SpETg0 =
227+ golang.org/x/net v0.33 .0 h1:74SYHlV8BIgHIFC/LrYkOGIwL19eTYXQ5wc6TBuO36I =
228+ golang.org/x/net v0.33 .0 /go.mod h1:HXLR5J+9DxmrqMwG9qjGCxZ+zKXxBru04zlTvWlWuN4 =
229229golang.org/x/oauth2 v0.22.0 h1:BzDx2FehcG7jJwgWLELCdmLuxk2i+x9UDpSiss2u0ZA =
230230golang.org/x/oauth2 v0.22.0 /go.mod h1:XYTD2NtWslqkgxebSiOHnXEap4TF09sJSc7H1sXbhtI =
231231golang.org/x/sync v0.0.0-20190423024810-112230192c58 /go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM =
You can’t perform that action at this time.
0 commit comments