diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 8be0146..28bb681 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -1,13 +1,15 @@ +--- name: Build and Test Docker Image on: push: - branches-ignore: latest + branches-ignore: + - latest paths: - - '.github/workflows/build-and-test.yml' - - 'Dockerfile' - - 'bin/**' - - 'src/**' + - ".github/workflows/build-and-test.yml" + - "Dockerfile" + - "bin/**" + - "src/**" - LICENSE jobs: diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index a36b9ed..0cef8e6 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -1,7 +1,7 @@ --- name: "CodeQL and Linter Analysis" -on: +"on": push: jobs: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index db3672f..e775cc8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,6 +1,7 @@ +--- name: Release -on: +"on": push: branches: - "latest" @@ -35,7 +36,7 @@ jobs: driver: docker-container - name: Install GitVersion - uses: gittools/actions/gitversion/setup@v3.2.1 + uses: gittools/actions/gitversion/setup@v4.0.0 with: versionSpec: "6.0.0" @@ -44,7 +45,7 @@ jobs: - name: Determine Version id: gitversion - uses: gittools/actions/gitversion/execute@v3.2.1 + uses: gittools/actions/gitversion/execute@v4.0.0 with: useConfigFile: true configFilePath: ci/git-version.yml diff --git a/Dockerfile b/Dockerfile index a321f6e..eb516fe 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Use the UDX worker as the base image -FROM usabilitydynamics/udx-worker:0.20.0 +FROM usabilitydynamics/udx-worker:0.21.0 # Add metadata labels LABEL maintainer="UDX" @@ -8,7 +8,7 @@ LABEL version="0.16.0" # Arguments and Environment Variables ARG PHP_VERSION=8.4 ARG PHP_PACKAGE_VERSION=8.4.5-1ubuntu1 -ARG NGINX_VERSION=1.26.3-2ubuntu1 +ARG NGINX_VERSION=1.26.3-2ubuntu1.1 # Set the PHP_VERSION and PHP_PACKAGE_VERSION as environment variables ENV PHP_VERSION="${PHP_VERSION}"