1
0
Fork 0
mirror of https://code.forgejo.org/actions/ovh-dns-update synced 2025-06-08 04:58:21 +02:00
ovh-dns-update/go.mod

24 lines
605 B
Modula-2
Raw Normal View History

2023-08-18 11:31:27 +02:00
// SPDX-FileCopyrightText: 2023 Olivier Charvin <git@olivier.pfad.fr>
// SPDX-License-Identifier: CC0-1.0
module ovh-dns-update
2024-12-04 15:31:13 +00:00
go 1.23
2023-08-18 11:31:27 +02:00
toolchain go1.23.8
2024-12-04 15:31:13 +00:00
require (
github.com/ovh/go-ovh v1.7.0
Update module github.com/sethvargo/go-githubactions to v1.3.1 (#23) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [github.com/sethvargo/go-githubactions](https://github.com/sethvargo/go-githubactions) | require | patch | `v1.3.0` -> `v1.3.1` | --- ### Release Notes <details> <summary>sethvargo/go-githubactions (github.com/sethvargo/go-githubactions)</summary> ### [`v1.3.1`](https://github.com/sethvargo/go-githubactions/releases/tag/v1.3.1) [Compare Source](https://github.com/sethvargo/go-githubactions/compare/v1.3.0...v1.3.1) #### What's Changed - Add GITHUB_TRIGGERING_ACTOR to GH context by [@&#8203;partiallyordered](https://github.com/partiallyordered) in https://github.com/sethvargo/go-githubactions/pull/60 #### New Contributors - [@&#8203;partiallyordered](https://github.com/partiallyordered) made their first contribution in https://github.com/sethvargo/go-githubactions/pull/60 **Full Changelog**: https://github.com/sethvargo/go-githubactions/compare/v1.3.0...v1.3.1 </details> --- ### Configuration 📅 **Schedule**: Branch creation - Between 12:00 AM and 03:59 AM ( * 0-3 * * * ) (UTC), Automerge - Between 12:00 AM and 03:59 AM ( * 0-3 * * * ) (UTC). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yNTIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjI1Mi4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> Reviewed-on: https://code.forgejo.org/forgejo/ovh-dns-update/pulls/23 Reviewed-by: earl-warren <earl-warren@noreply.code.forgejo.org> Co-authored-by: Renovate Bot <bot@kriese.eu> Co-committed-by: Renovate Bot <bot@kriese.eu>
2025-05-05 10:01:24 +00:00
github.com/sethvargo/go-githubactions v1.3.1
2024-12-04 15:31:13 +00:00
)
2023-08-18 11:31:27 +02:00
require (
github.com/golang/protobuf v1.5.3 // indirect
2023-08-18 11:31:27 +02:00
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/net v0.22.0 // indirect
golang.org/x/oauth2 v0.18.0 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/protobuf v1.31.0 // indirect
2023-08-18 11:31:27 +02:00
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)