From 54ca4a5eaeb6c80fb0a32626b51f4d075a52b02b Mon Sep 17 00:00:00 2001 From: Timothy Miller Date: Wed, 18 Mar 2026 19:01:50 -0400 Subject: [PATCH] Bump version to 2.0.3 and update GitHub Actions to Node.js 24 Update all Docker GitHub Actions to their latest major versions to resolve Node.js 20 deprecation warnings ahead of the June 2026 cutoff. --- .github/workflows/image.yml | 10 +++++----- Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/image.yml b/.github/workflows/image.yml index fc8e9d3..d132c5a 100644 --- a/.github/workflows/image.yml +++ b/.github/workflows/image.yml @@ -15,14 +15,14 @@ jobs: uses: actions/checkout@v6 - name: Set up QEMU - uses: docker/setup-qemu-action@v3 + uses: docker/setup-qemu-action@v4 - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 + uses: docker/setup-buildx-action@v4 - name: Login to DockerHub if: github.event_name != 'pull_request' - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} @@ -35,7 +35,7 @@ jobs: - name: Docker meta id: meta - uses: docker/metadata-action@v5 + uses: docker/metadata-action@v6 with: images: timothyjmiller/cloudflare-ddns tags: | @@ -46,7 +46,7 @@ jobs: type=raw,enable=${{ github.ref == 'refs/heads/master' }},value=${{ steps.version.outputs.version }} - name: Build and push - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v7 with: context: . push: ${{ github.event_name != 'pull_request' }} diff --git a/Cargo.toml b/Cargo.toml index 176208d..66a8040 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cloudflare-ddns" -version = "2.0.2" +version = "2.0.3" edition = "2021" description = "Access your home network remotely via a custom domain name without a static IP" license = "GPL-3.0"