Skip to content
Open
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
4 changes: 2 additions & 2 deletions .github/workflows/build-and-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:

steps:
- name: Check out Git repository
uses: actions/checkout@v5
uses: actions/checkout@v7
with:
ref: ${{ env.TAG }}

Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:
needs: push-docker-image
steps:
- name: Checkout Repository
uses: actions/checkout@v5
uses: actions/checkout@v7
with:
ref: ${{ env.TAG }}

Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/pull_request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

steps:
- name: Check out TS Project Git repository
uses: actions/checkout@v5
uses: actions/checkout@v7

- name: Set up Node.js
uses: actions/setup-node@v4
Expand All @@ -48,7 +48,7 @@ jobs:

steps:
- name: Check out TS Project Git repository
uses: actions/checkout@v5
uses: actions/checkout@v7

- name: OpenAPI Lint Checks
run: npx @redocly/cli lint --format=github-actions ./openapi3.yaml
Expand All @@ -59,7 +59,7 @@ jobs:

steps:
- name: Check out TS Project Git repository
uses: actions/checkout@v5
uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:
--health-retries 5
steps:
- name: Check out Git repository
uses: actions/checkout@v5
uses: actions/checkout@v7

- name: Set up Node.js
uses: actions/setup-node@v4
Expand Down Expand Up @@ -155,7 +155,7 @@ jobs:

steps:
- name: Check out TS Project Git repository
uses: actions/checkout@v5
uses: actions/checkout@v7

- name: build migrations Docker image
run: docker build -f ./packages/db/migrations.Dockerfile -t test-migrations-build:latest .
Expand All @@ -170,7 +170,7 @@ jobs:

steps:
- name: Check out Git repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Build and Push Docker image
uses: docker/build-push-action@v6
Expand Down
Loading