Skip to content

Commit

Permalink
Update action versions in CI/CD (#679)
Browse files Browse the repository at this point in the history
  • Loading branch information
mansueli authored Feb 1, 2024
1 parent e3383c3 commit 13bed26
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,23 +17,23 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Clone Repository
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

- name: Set up Poetry
uses: abatilo/actions-poetry@v2.2.0
uses: abatilo/actions-poetry@v3
with:
poetry-version: 1.3.2

- name: Run Tests
run: poetry run tests

- name: Upload Coverage
uses: codecov/codecov-action@v1
uses: codecov/codecov-action@v3
publish:
needs: test
if: ${{ !startsWith(github.event.head_commit.message, 'bump') && !startsWith(github.event.head_commit.message, 'chore') && github.ref == 'refs/heads/main' && github.event_name == 'push' && github.repository_owner == 'supabase-community' }}
Expand All @@ -47,7 +47,7 @@ jobs:
contents: write # needed for github actions bot to write to repo
steps:
- name: Clone Repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ github.ref }}
fetch-depth: 0
Expand Down

0 comments on commit 13bed26

Please sign in to comment.