Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update ghcr.io/envelope-zero/backend docker tag to v4 #1438

Merged
merged 2 commits into from
Jan 10, 2024
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
3 changes: 2 additions & 1 deletion .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,13 @@ jobs:
# Current backend version as service container
services:
backend:
image: ghcr.io/envelope-zero/backend:v3.22.2
image: ghcr.io/envelope-zero/backend:v4.2.1
env:
CORS_ALLOW_ORIGINS: http://localhost:3000
API_URL: http://localhost:3000/api
ports:
- 8080:8080
options: --user root

strategy:
fail-fast: false # https://github.com/cypress-io/github-action/issues/48
Expand Down
4 changes: 2 additions & 2 deletions cypress/e2e/api.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ describe('API: Load from Server', () => {
// The body should only have one key: links
expect(response.body).to.have.keys(['links'])

// The links object can have any key, but must contain docs, v1 and version
expect(response.body.links).to.contain.keys(['docs', 'v1', 'version'])
// The links object can have any key, but must contain version and healthz
expect(response.body.links).to.contain.keys(['version', 'healthz'])
})
})
})
2 changes: 1 addition & 1 deletion docker-compose-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ volumes:

services:
backend:
image: ghcr.io/envelope-zero/backend:v3.22.2
image: ghcr.io/envelope-zero/backend:v4.2.1
volumes:
- ez-dev-data:/data
ports:
Expand Down
2 changes: 1 addition & 1 deletion docker-compose-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ volumes:

services:
backend:
image: ghcr.io/envelope-zero/backend:v3.22.2
image: ghcr.io/envelope-zero/backend:v4.2.1
volumes:
- ez-production-data:/data
environment:
Expand Down
2 changes: 1 addition & 1 deletion docker-compose-test.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: '3'
services:
backend:
image: ghcr.io/envelope-zero/backend:v3.22.2
image: ghcr.io/envelope-zero/backend:v4.2.1
ports:
- 8081:8080
environment:
Expand Down