From 6c7120edbb6d4012a46f212b8ccc9a512f221c24 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 18 Jun 2024 09:03:31 +0000 Subject: [PATCH 1/2] build(deps): bump docker/build-push-action from 5 to 6 Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 5 to 6. - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](https://github.com/docker/build-push-action/compare/v5...v6) --- updated-dependencies: - dependency-name: docker/build-push-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From 44f2b94164214583c846a86c923c066044a1ace0 Mon Sep 17 00:00:00 2001 From: Ryan Castellucci Date: Sat, 22 Jun 2024 09:03:42 +0100 Subject: [PATCH 2/2] correct classic mode prompt "Do you wish to continue to enable the classic mode?" actually defaults to "no" rather than "yes" as the prompt text implies, this corrects the prompt text. --- src/cli/cli.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)