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
14 changes: 7 additions & 7 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Install uv
uses: astral-sh/setup-uv@v8.1.0
with:
Expand Down Expand Up @@ -48,7 +48,7 @@ jobs:
COVERAGE_REPORT_TITLE: "Code coverage report"

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0
- name: Install uv
Expand Down Expand Up @@ -133,7 +133,7 @@ jobs:
IMAGE_TAG: latest

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Select Docker image tag (production only)
if: contains(github.ref, 'tags')
run: echo "IMAGE_TAG=${GITHUB_REF##*/}" >> $GITHUB_ENV
Expand All @@ -155,7 +155,7 @@ jobs:
needs: test

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Install uv
uses: astral-sh/setup-uv@v8.1.0
with:
Expand Down Expand Up @@ -186,7 +186,7 @@ jobs:
id-token: write

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Download build artifacts
uses: actions/download-artifact@v8
with:
Expand Down Expand Up @@ -255,7 +255,7 @@ jobs:
VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }}

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Inject slug/short variables
uses: rlespinasse/github-slug-action@v5
- name: Install Vercel CLI
Expand All @@ -282,7 +282,7 @@ jobs:
VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }}

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Install Vercel CLI
run: npm install --global vercel@latest
- name: Deploy to Vercel
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lockfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
LOCKFILE_BRANCH: chore/uv-lockfile

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
ref: ${{ env.BASE_BRANCH }}
- name: Install uv
Expand Down
Loading