mirror of
https://code.forgejo.org/actions/ovh-dns-update
synced 2025-06-08 04:58:21 +02:00
19 lines
427 B
Modula-2
19 lines
427 B
Modula-2
// SPDX-FileCopyrightText: 2023 Olivier Charvin <git@olivier.pfad.fr>
|
|
// SPDX-License-Identifier: CC0-1.0
|
|
module ovh-dns-update
|
|
|
|
go 1.23.0
|
|
|
|
toolchain go1.23.10
|
|
|
|
require (
|
|
github.com/ovh/go-ovh v1.7.0
|
|
github.com/sethvargo/go-githubactions v1.3.1
|
|
)
|
|
|
|
require (
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
golang.org/x/oauth2 v0.27.0 // indirect
|
|
gopkg.in/ini.v1 v1.67.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|