Skip to content

Commit

Permalink
bump checkout action
Browse files Browse the repository at this point in the history
there was a warning..
  • Loading branch information
robert-bryson committed Mar 21, 2024
1 parent 78a52f2 commit 96d128f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
name: Python Lint
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: chartboost/ruff-action@v1

test:
Expand All @@ -21,7 +21,7 @@ jobs:
name: Pytests
steps:
- name: Check out the code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 1

Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install Poetry
uses: abatilo/actions-poetry@v2
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install Poetry
uses: abatilo/actions-poetry@v2
with:
Expand Down Expand Up @@ -79,7 +79,7 @@
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install Poetry
uses: abatilo/actions-poetry@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/load_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup python
uses: actions/setup-python@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
url: https://pypi.org/project/datagov-harvesting-logic/
steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Update setup.py if manual release
if: github.event_name == 'workflow_dispatch'
run: |
Expand Down

1 comment on commit 96d128f

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage

Coverage Report
FileStmtsMissCoverMissing
harvester
   __init__.py50100% 
   ckan_utils.py4222 95%
   exceptions.py420100% 
   harvest.py4256565 85%
   logger_config.py10100% 
   utils.py3522 94%
TOTAL5506987% 

Tests Skipped Failures Errors Time
28 0 💤 0 ❌ 0 🔥 1.972s ⏱️

Please sign in to comment.