Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
miigotu committed Nov 4, 2023
2 parents cd5ff59 + ee7d2cf commit 48bea07
Show file tree
Hide file tree
Showing 5 changed files with 204 additions and 170 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
runs-on: ubuntu-latest
steps:
-
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 1
persist-credentials: false
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
-
name: Set up Docker metadata
id: docker
uses: docker/metadata-action@v4
uses: docker/metadata-action@v5
with:
images: |
${{ github.repository }}
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
steps:
-
name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

-
name: Restore environment files
Expand All @@ -101,12 +101,12 @@ jobs:
name: Set up QEMU
if: success()
id: qemu
uses: docker/setup-qemu-action@v2
uses: docker/setup-qemu-action@v3

-
name: Set up Docker Buildx
if: success()
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

-
name: Login to GitHub Container Registry
Expand All @@ -128,7 +128,7 @@ jobs:
-
name: Build and push docker image
if: success()
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
context: .
platforms: ${{ env.TARGET_PLATFORMS }}
Expand All @@ -141,9 +141,9 @@ jobs:
runs-on: ubuntu-latest
steps:
-
uses: actions/checkout@v3
uses: actions/checkout@v4
-
name: Build and publish to pypi
uses: JRubics/poetry-publish@v1.6
uses: JRubics/poetry-publish@v1.17
with:
pypi_token: ${{ secrets.PYPI_TOKEN }}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ dist
*.ini
*.log*
work
.vscode
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG VERSION=v2.6.0
ARG VERSION=v2.7.4
FROM certbot/certbot:$VERSION

LABEL org.opencontainers.image.source="https://github.com/miigotu/certbot-dns-godaddy"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ certbot-dns-godaddy

This plugin automates the process of completing a `dns-01` challenge by creating, and subsequently removing, `TXT` records using the godaddy [API](https://developer.godaddy.com/doc/endpoint/domains) via [lexicon](https://github.com/AnalogJ/lexicon).

**Note:** This manual assumes certbot 2.6.0, which has improved the naming scheme for external plugins.
**Note:** This manual assumes certbot >=2.7.4 which has improved the naming scheme for external plugins.

Installation
------------
Expand Down
Loading

0 comments on commit 48bea07

Please sign in to comment.