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/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
env:
DATABASE_URL: postgresql://ocl:ocl@localhost:5432/ocl_test
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

# No `version:` here — pnpm is pinned via the root package.json `packageManager`
# field. Specifying both makes pnpm/action-setup fail with a version conflict.
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
name: Docker image build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- uses: docker/setup-buildx-action@v3
- name: Build API image
uses: docker/build-push-action@v6
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
build_args: |
NEXT_PUBLIC_API_URL=http://localhost:4000
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- uses: docker/setup-buildx-action@v3

Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
needs: [prep, images]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down
Loading