Skip to content

Commit

Permalink
update openssh version and removed phony
Browse files Browse the repository at this point in the history
  • Loading branch information
TimHuynh committed Aug 15, 2024
1 parent 193297e commit a7292dc
Showing 1 changed file with 1 addition and 22 deletions.
23 changes: 1 addition & 22 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# the integration tests, and the static build flags for Go.
# Note: No space between the equals and the value else issues arise.
# renovate: datasource=repology depName=alpine_3_19/openssh versioning=loose
OPENSSH_VERSION=9.6_p1-r1
OPENSSH_VERSION=9.7_p1-r4
# renovate: datasource=repology depName=alpine_3_19/sshpass versioning=loose
SSHPASS_VERSION=1.10-r0

Expand All @@ -26,21 +26,18 @@ LD_FLAGS = \
# and prepare the local changes for submission.
#
# Usage: `make clean`
.PHONY: clean
clean: tidy vet fmt fix

# The `run` target is intended to build and
# execute the Docker image for the plugin.
#
# Usage: `make run`
.PHONY: run
run: build docker-build docker-run

# The `tidy` target is intended to clean up
# the Go module files (go.mod & go.sum).
#
# Usage: `make tidy`
.PHONY: tidy
tidy:
@echo
@echo "### Tidying Go module"
Expand All @@ -50,7 +47,6 @@ tidy:
# Go source code for potential issues.
#
# Usage: `make vet`
.PHONY: vet
vet:
@echo
@echo "### Vetting Go code"
Expand All @@ -60,7 +56,6 @@ vet:
# Go source code to meet the language standards.
#
# Usage: `make fmt`
.PHONY: fmt
fmt:
@echo
@echo "### Formatting Go Code"
Expand All @@ -70,7 +65,6 @@ fmt:
# Go source code using old APIs.
#
# Usage: `make fix`
.PHONY: fix
fix:
@echo
@echo "### Fixing Go Code"
Expand All @@ -80,7 +74,6 @@ fix:
# the tests for the Go source code.
#
# Usage: `make test`
.PHONY: test
test:
@echo
@echo "### Testing Go Code"
Expand All @@ -91,7 +84,6 @@ test:
# open the test coverage report.
#
# Usage: `make test-cover`
.PHONY: test-cover
test-cover:
@echo
@echo "### Creating test coverage report"
Expand All @@ -104,7 +96,6 @@ test-cover:
# the Go source code into a binary.
#
# Usage: `make build`
.PHONY: build
build:
@echo
@echo "### Building release/vela-scp binary"
Expand All @@ -125,7 +116,6 @@ build:
# the Go source code into a statically linked binary.
#
# Usage: `make build-static`
.PHONY: build-static
build-static:
@echo
@echo "### Building static release/vela-scp binary"
Expand All @@ -147,7 +137,6 @@ build-static:
# when used within a CI environment.
#
# Usage: `make build-static-ci`
.PHONY: build-static-ci
build-static-ci:
@echo
@echo "### Building CI static release/vela-scp binary"
Expand All @@ -166,7 +155,6 @@ build-static-ci:
# dependencies from the Go module that need updates.
#
# Usage: `make check`
.PHONY: check
check: check-install
@echo
@echo "### Checking dependencies for updates"
Expand All @@ -176,7 +164,6 @@ check: check-install
# dependencies from the Go module that need updates.
#
# Usage: `make check-direct`
.PHONY: check-direct
check-direct: check-install
@echo
@echo "### Checking direct dependencies for updates"
Expand All @@ -186,7 +173,6 @@ check-direct: check-install
# all dependencies from the Go module.
#
# Usage: `make check-full`
.PHONY: check-full
check-full: check-install
@echo
@echo "### Checking all dependencies for updates"
Expand All @@ -196,7 +182,6 @@ check-full: check-install
# the tool used to check dependencies from the Go module.
#
# Usage: `make check-install`
.PHONY: check-install
check-install:
@echo
@echo "### Installing psampaz/go-mod-outdated"
Expand All @@ -206,7 +191,6 @@ check-install:
# non-test dependencies for the Go module.
#
# Usage: `make bump-deps`
.PHONY: bump-deps
bump-deps: check
@echo
@echo "### Upgrading dependencies"
Expand All @@ -216,7 +200,6 @@ bump-deps: check
# all dependencies for the Go module.
#
# Usage: `make bump-deps-full`
.PHONY: bump-deps-full
bump-deps-full: check
@echo
@echo "### Upgrading all dependencies"
Expand All @@ -226,7 +209,6 @@ bump-deps-full: check
# the Docker image for the plugin.
#
# Usage: `make docker-build`
.PHONY: docker-build
docker-build:
@echo
@echo "### Building vela-scp:local image"
Expand All @@ -238,15 +220,13 @@ docker-build:
# for integration testing the plugins work with other systems.
#
# Usage: `make docker-test`
.PHONY: docker-test
docker-test:
@test/integration-tests.sh

# The `docker-run-scp` target is intended to execute
# the Docker image for the scp plugin.
#
# Usage: `make docker-run-scp`
.PHONY: docker-run-scp
docker-run-scp:
@echo
@echo "### Executing vela-scp:local image"
Expand All @@ -267,7 +247,6 @@ docker-run-scp:
# the Docker image for the ssh plugin.
#
# Usage: `make docker-run-ssh`
.PHONY: docker-run-ssh
docker-run-ssh:
@echo
@echo "### Executing vela-ssh:local image"
Expand Down

0 comments on commit a7292dc

Please sign in to comment.