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"