Skip to content

Commit

Permalink
chore(githu-actions): bumps up versions
Browse files Browse the repository at this point in the history
removes deprecated upload-artifact gh action
  • Loading branch information
vchendrix committed Nov 7, 2024
1 parent 2d9f878 commit ec2463a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 15 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/lint_helm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Set up Helm
uses: azure/setup-helm@v2
uses: azure/setup-helm@v4
with:
version: v3.4.0

- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: 3.7

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
Expand Down
15 changes: 4 additions & 11 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
python-version: ['3.9', '3.10']

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand All @@ -23,14 +23,7 @@ jobs:
sudo apt-get install -y python-dev-is-python3 libldap2-dev libsasl2-dev libssl-dev
python -m pip install --upgrade pip
pip install ".[dev]"
- name: Make artifact directory
run: |
mkdir -p ${{ github.workspace }}/artifacts
- name: Test with pytest
run: |
PYTHONPATH=. pytest -m "not flake8 and not mypy" --cov=. --cov-report term --cov-report html:${{ github.workspace }}/artifacts
- name: Archive code coverage results
uses: actions/upload-artifact@v3
with:
name: code-coverage-report
path: ${{ github.workspace }}/artifacts
PYTHONPATH=. pytest -m "not flake8 and not mypy" --cov=. --cov-report term-missing

0 comments on commit ec2463a

Please sign in to comment.