Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
jq -r '.packages[] | select(.versionInfo != null) | "\(.name) | \(.versionInfo)"' sbom.json | sort | uniq | head -n 20 | column -t -s '|'

- name: Upload SBOM Artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: sbom
path: sbom.json
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ jobs:
fi

- name: Upload SBOM Artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: sbom
path: sbom.json
Expand All @@ -138,7 +138,7 @@ jobs:
git config --global user.name "UDX Worker PHP"

- name: Download SBOM Artifact
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: sbom

Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Use the UDX worker as the base image
FROM usabilitydynamics/udx-worker:0.29.0
FROM usabilitydynamics/udx-worker:0.31.0

# Add metadata labels
LABEL maintainer="UDX"
LABEL version="0.26.0"
LABEL version="0.27.0"

# Arguments and Environment Variables
ARG PHP_VERSION=8.4
Expand Down
27 changes: 27 additions & 0 deletions deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# npm install -g @udx/worker-deployment
# gcloud auth login
# gcloud auth application-default login
# worker-run

---
kind: workerDeployConfig
version: udx.io/worker-v1/deploy
config:
# Docker image
image: "usabilitydynamics/udx-worker-php:latest"

# env:
# ACTORS_CLEANUP: false

# Mount volumes
volumes:
- "./src/scripts:/var/www"

ports:
- "80:80"

# Command to run
# command: "/usr/local/bin/init.sh"

# service_account:
# email: ""
Loading