Skip to content
Open
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
10 changes: 5 additions & 5 deletions .github/workflows/fork-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ jobs:
run: backend/scripts/install-mockery.sh
- name: Cache golangci-lint
id: cache-golangci-lint
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: golangci-lint
key: ${{ runner.os }}-backend-golangci-lint
Expand Down Expand Up @@ -231,7 +231,7 @@ jobs:
make build-python
- name: Cache unit-test
id: cache-unit-test
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: |
~/.cache/go-build
Expand Down Expand Up @@ -278,7 +278,7 @@ jobs:
make build-python
- name: Cache test-e2e
id: cache-test-e2e
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: |
~/.cache/go-build
Expand Down Expand Up @@ -328,7 +328,7 @@ jobs:
make build-python
- name: Cache test-e2e-pg
id: cache-test-e2e-pg
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: |
~/.cache/go-build
Expand Down Expand Up @@ -417,7 +417,7 @@ jobs:
fetch-depth: 0
- name: Cache lint-commit-message
id: cache-lint-commit-message
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: lint-commit-message
key: ${{ runner.os }}-lint-commit-message
Expand Down
Loading