From 4cbdb135e78c114de70ce115da37d4b730bb9d27 Mon Sep 17 00:00:00 2001 From: Javier Cicchelli Date: Fri, 28 Apr 2023 14:27:40 +0200 Subject: [PATCH] Added the "outdated" and "update" targets for dependencies workflows to the Makefile file. --- Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Makefile b/Makefile index 5ea7cc7..2834d9e 100644 --- a/Makefile +++ b/Makefile @@ -13,6 +13,14 @@ override tag?=${DOCKER_IMAGE_TAG} override platform?=${DOCKER_IMAGE_PLATFORM} override config?=${SWIFT_BUILD_CONFIGURATION} +# --- DEPENDENCIES --- + +outdated: ## List the package dependencies that can be updated. + @swift package update --dry-run + +update: ## Update the package dependencies defined in the project. + @swift package update + # --- DEVELOPMENT --- build: ## Build this package with Swift either locally or in a Docker image.