Added the "outdated" and "update" targets for dependencies workflows to the Makefile file.

This commit is contained in:
Javier Cicchelli 2023-04-28 14:27:40 +02:00
parent 7a0f67713d
commit 4cbdb135e7

View File

@ -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.