20 Commits

Author SHA1 Message Date
bcbd5caad8 Update dependency flake8 to v7
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 5s
2024-06-12 00:42:05 +00:00
85dd9332c0 Merge pull request 'Update dependency pep8-naming to ~=0.14.1' (#8) from renovate/pep8-naming-0.x into main
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 5s
Reviewed-on: https://git.home.timatlee.com/timatlee/cloudflare-ddns-docker-updated/pulls/8
2024-06-11 18:41:13 -06:00
b09b8837c9 Merge pull request 'Update dependency flake8 to ~=3.9.2' (#3) from renovate/flake8-3.x into main
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 7s
Reviewed-on: https://git.home.timatlee.com/timatlee/cloudflare-ddns-docker-updated/pulls/3
2024-06-11 18:40:59 -06:00
d7a1736ddf Merge pull request 'Update dependency click to v8.1.7' (#2) from renovate/click-8.x into main
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 4s
Reviewed-on: https://git.home.timatlee.com/timatlee/cloudflare-ddns-docker-updated/pulls/2
2024-06-11 18:40:43 -06:00
a781f2cd80 Merge pull request 'Update dependency idna to v3 [SECURITY]' (#1) from renovate/pypi-idna-vulnerability into main
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 4s
Reviewed-on: https://git.home.timatlee.com/timatlee/cloudflare-ddns-docker-updated/pulls/1
2024-06-11 18:39:48 -06:00
3e4d6156c7 Merge branch 'main' of git.home.timatlee.com:timatlee/cloudflare-ddns-docker-updated
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 7s
2024-06-11 18:39:20 -06:00
ef4b86c132 Merge remote-tracking branch 'origin/renovate/chardet-5.x' 2024-06-11 18:39:14 -06:00
ce76fa87ed Merge pull request 'Update dependency flake8-bugbear to v24' (#15) from renovate/flake8-bugbear-24.x into main
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 5s
Reviewed-on: https://git.home.timatlee.com/timatlee/cloudflare-ddns-docker-updated/pulls/15
2024-06-11 18:37:21 -06:00
55d0ec44c0 Merge pull request 'Update dependency urllib3 to v2' (#16) from renovate/urllib3-2.x into main
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 5s
Reviewed-on: https://git.home.timatlee.com/timatlee/cloudflare-ddns-docker-updated/pulls/16
2024-06-11 18:31:40 -06:00
f154083f07 Add dotenv support
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 5s
2024-06-11 18:26:12 -06:00
199763f50e Test action!
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 49s
2024-06-11 11:04:30 -06:00
6905b2adab Update renovate.json 2024-06-11 08:54:42 -06:00
304ba2a48a Update renovate.json
Ignore .github directory, since we're not using it ..  and this is a fork from a mirror.
2024-06-11 08:43:46 -06:00
5201dfa2d4 Update dependency urllib3 to v2 2024-06-11 14:41:25 +00:00
ae038ca034 Update dependency flake8-bugbear to v24 2024-06-11 14:41:24 +00:00
4f7f3f243c Update dependency chardet to v5 2024-06-11 14:41:20 +00:00
4b169c2051 Update dependency pep8-naming to ~=0.14.1 2024-06-11 14:41:13 +00:00
bb916ed3c1 Update dependency flake8 to ~=3.9.2 2024-06-11 14:41:00 +00:00
35da9d30b2 Update dependency click to v8.1.7 2024-06-11 14:40:59 +00:00
753b3523c6 Update dependency idna to v3 [SECURITY] 2024-06-11 14:40:57 +00:00
6 changed files with 33 additions and 8 deletions

View File

@ -0,0 +1,19 @@
name: Gitea Actions Demo
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on: [push]
jobs:
Explore-Gitea-Actions:
runs-on: ubuntu-latest
steps:
- run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event."
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!"
- run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
- name: Check out repository code
uses: actions/checkout@v4
- run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner."
- run: echo "🖥️ The workflow is now ready to test your code on the runner."
- name: List files in the repository
run: |
ls ${{ gitea.workspace }}
- run: echo "🍏 This job's status is ${{ job.status }}."

1
.sops.yaml Normal file
View File

@ -0,0 +1 @@
[]

View File

@ -1,13 +1,14 @@
import logging
from os import environ
from typing import Tuple
from dotenv import load_dotenv
import click
from cloudflare_ddns.app import ApplicationJob
from cloudflare_ddns.constants import BASE_ENV_VAR, DEFAULT_DELAY, DOMAINS_ENV_VAR
log = logging.getLogger("ddns")
load_dotenv()
@click.command()
@click.option(

View File

@ -1,5 +1,9 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"includeForks": true
"forkProcessing": "enabled",
"ignorePaths": [
".github"
]
}

View File

@ -1,9 +1,9 @@
flake8~=7.0.0
flake8-annotations~=2.4.1
flake8-bugbear~=20.1.4
flake8-bugbear~=24.4.26
flake8-docstrings~=1.5.0
flake8-import-order~=0.18.1
flake8-string-format~=0.3.0
flake8-tidy-imports~=4.1.0
flake8-todo~=0.7
pep8-naming~=0.11.1
pep8-naming~=0.14.1

View File

@ -1,8 +1,8 @@
certifi==2024.6.2
chardet==4.0.0
chardet==5.2.0
charset-normalizer==3.3.2
click==8.1.0
click==8.1.7
colorama==0.4.6
idna==2.10
idna==3.7
requests==2.32.3
urllib3==1.26.18
urllib3==2.2.1