diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 965658f2..305739ad 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -54,7 +54,7 @@ jobs: password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Build and push - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: context: . file: ./Dockerfile diff --git a/src/cli/cli.go b/src/cli/cli.go index 36a98649..ae6b2a6f 100644 --- a/src/cli/cli.go +++ b/src/cli/cli.go @@ -143,7 +143,7 @@ multi-user system, this will help ensure that other local users cannot access the shared secret and receive the files instead of the intended recipient. -Do you wish to continue to DISABLE the classic mode? (Y/n) `) +Do you wish to continue to DISABLE the classic mode? (y/N) `) choice := strings.ToLower(utils.GetInput("")) if choice == "y" || choice == "yes" { os.Remove(classicFile)