Skip to content

Commit

Permalink
ci: 🚀 Update GH action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
awhipp committed Jul 25, 2024
1 parent eace048 commit d56a3df
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/check_data_sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ jobs:
steps:

# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10.8' # Version range or exact version of a Python version to use, using SemVer's version range syntax
architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check_endpoints.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
steps:

# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install Dependencies
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/evetrade_api_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ jobs:
steps:

# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/setup-python@v3
- uses: actions/setup-python@v5
with:
python-version: 3.9

Expand All @@ -27,7 +27,7 @@ jobs:
python -m poetry config virtualenvs.in-project true
- name: Cache the virtualenv
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ./.venv
key: ${{ runner.os }}-venv-${{ hashFiles('**/poetry.lock') }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/evetrade_deploy_dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:
steps:

# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/setup-python@v3
- uses: actions/setup-python@v5
with:
python-version: 3.9

Expand All @@ -29,7 +29,7 @@ jobs:
python -m poetry config virtualenvs.in-project true
- name: Cache the virtualenv
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ./.venv
key: ${{ runner.os }}-venv-${{ hashFiles('**/poetry.lock') }}
Expand Down

1 comment on commit d56a3df

@github-actions
Copy link

Choose a reason for hiding this comment

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

Code Coverage

Code Coverage
FileStmtsMissCoverMissing
__init__.py00100% 
gateway.py884647%43–45, 47–50, 52–57, 59, 68–69, 71–72, 75, 78–79, 82, 84–85, 87–89, 91–92, 94–96, 98–102, 104, 115, 123–124, 130–131, 161, 163, 165
evetrade
   __init__.py00100% 
   hauling.py1622385%39, 44, 61–62, 67, 93, 101, 189–190, 195–196, 291–294, 302–305, 307, 357–358, 366
   orders.py330100% 
   station.py68395%62–64
utils
   __init__.py00100% 
   helpers.py230100% 
TOTAL3747280% 

Please sign in to comment.