fix: rever http-proxy-middleware version and make sure the container works with it #105
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI (global trustify CI) | |
on: | |
push: | |
branches: | |
- "main" | |
pull_request: | |
branches: | |
- "main" | |
workflow_call: | |
concurrency: | |
group: ci-global-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build-and-upload-for-global-ci: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: save trustd image | |
run: | | |
docker build . -t ghcr.io/trustification/trustd:pr-test -f Dockerfile.server | |
docker save -o /tmp/trustd.tar ghcr.io/trustification/trustd:pr-test | |
- name: Upload trustd image as artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: trustd | |
path: /tmp/trustd.tar | |
retention-days: 1 | |
run-global-ci: | |
needs: build-and-upload-for-global-ci | |
uses: trustification/trustify-ci/.github/workflows/global-ci.yml@main | |
with: | |
artifact: trustd | |
server_image: ghcr.io/trustification/trustd:pr-test | |
run_api_tests: false |