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
2 changes: 1 addition & 1 deletion .github/workflows/app-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

# Deploy on codemagic can be triggered only by branch and can't use paths filter.
# This workflow is a workaround to deploy app only when files under app directory change.
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/invy-api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
name: Dependencies
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Restore tools cache
id: restore-tools-cache
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
options: --health-cmd pg_isready --health-interval 5s --health-timeout 5s --health-retries 5

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version-file: 'go.mod'
Expand All @@ -86,7 +86,7 @@ jobs:
runs-on: ubuntu-latest
needs: dependencies
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version-file: 'go.mod'
Expand All @@ -109,7 +109,7 @@ jobs:
- lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Authenticate Google Cloud
uses: google-github-actions/auth@v1
with:
Expand Down Expand Up @@ -149,7 +149,7 @@ jobs:
runs-on: ubuntu-latest
environment: invy-api-dev
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Authenticate Google Cloud
uses: google-github-actions/auth@v1
with:
Expand All @@ -172,7 +172,7 @@ jobs:
runs-on: ubuntu-latest
environment: invy-api-prod
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Authenticate Google Cloud
uses: google-github-actions/auth@v1
with:
Expand Down