diff --git a/.docker/.env.example b/.docker/.env.example index 590d2bc24..06955f169 100644 --- a/.docker/.env.example +++ b/.docker/.env.example @@ -37,4 +37,4 @@ COMPOSER_VERSION=2.2.5 MYSQL_VERSION=10.4.8 MONGODB_VERSION=5 NGINX_VERSION=1.21.5-alpine -PHP_VERSION=7.4 +PHP_VERSION=8.2 diff --git a/.gitea/workflows/run_tests.yaml b/.gitea/workflows/run_tests.yaml index c537cc636..dac0b3168 100644 --- a/.gitea/workflows/run_tests.yaml +++ b/.gitea/workflows/run_tests.yaml @@ -13,7 +13,8 @@ jobs: uses: actions/checkout@v4 - run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner." - run: echo "🖥️ The workflow is now ready to test your code on the runner." - - name: List files in the repository + - name: Make Setup run: | ls ${{ gitea.workspace }} + make make-init - run: echo "🍏 This job's status is ${{ job.status }}." diff --git a/Makefile b/Makefile index e0315c2af..17bb2da1c 100644 --- a/Makefile +++ b/Makefile @@ -81,7 +81,7 @@ help: ##@ [Make] -ENVS?=ENV=local TAG=latest +ENVS?=ENV=local TAG=2.2 .PHONY: make-init make-init: ## Initializes the local .makefile/.env file with ENV variables for make. Use via ENVS="KEY_1=value1 KEY_2=value2" @$(if $(ENVS),,$(error ENVS is undefined))