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
8 changes: 4 additions & 4 deletions .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
backend: ${{ steps.filter.outputs.backend }}
frontend: ${{ steps.filter.outputs.frontend }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: dorny/paths-filter@4512585405083f25c027a35db413c2b3b9006d50
id: filter
with:
Expand All @@ -48,7 +48,7 @@ jobs:
run:
working-directory: ./frontend
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: volta-cli/action@d253558a6e356722728a10e9a469190de21a83ef
- name: Install dependencies
run: yarn --frozen-lockfile
Expand All @@ -73,7 +73,7 @@ jobs:
run:
working-directory: ./backend
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
with:
Expand Down Expand Up @@ -143,7 +143,7 @@ jobs:
FRONTEND_CHANGED: ${{ needs.changes.outputs.frontend == 'true' || inputs.force_build_frontend == true }}
BACKEND_CHANGED: ${{ needs.changes.outputs.backend == 'true' || inputs.force_build_backend == true }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/pr-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
backend: ${{ steps.filter.outputs.backend }}
frontend: ${{ steps.filter.outputs.frontend }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: dorny/paths-filter@4512585405083f25c027a35db413c2b3b9006d50
id: filter
with:
Expand All @@ -27,7 +27,7 @@ jobs:
base_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: volta-cli/action@d253558a6e356722728a10e9a469190de21a83ef
- name: Install dependencies
run: yarn --frozen-lockfile
Expand All @@ -40,7 +40,7 @@ jobs:
run:
working-directory: ./frontend
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: volta-cli/action@d253558a6e356722728a10e9a469190de21a83ef
- name: Install dependencies
run: yarn --frozen-lockfile
Expand All @@ -57,7 +57,7 @@ jobs:
run:
working-directory: ./backend
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: actions/cache@v3
with:
path: |
Expand Down