Skip to content
This repository has been archived by the owner on Jan 12, 2024. It is now read-only.

Commit

Permalink
Merge pull request #72 from Nike-Inc/dep/dependency_upgrade_staging
Browse files Browse the repository at this point in the history
Dep/dependency upgrade staging
  • Loading branch information
shawn-sher authored Apr 27, 2022
2 parents 3e4c7cd + 776e0d0 commit 0a34fca
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ jobs:
python-version: [2.7, 3.6]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v3.1.0
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand All @@ -34,14 +34,15 @@ jobs:
run: |
nosetests --with-coverage --cover-xml tests/
- name: Upload coverage report to CodeCov
uses: codecov/codecov-action@v1
uses: codecov/codecov-action@v2.1.0
with:
file: coverage.xml # optional
fail_ci_if_error: true # optional (default = false)
verbose: true
- name: Slack notification when master build fails
if: ${{ failure() && github.ref == 'refs/heads/master'}}
uses: rtCamp/action-slack-notify@v2.1.2
uses: rtCamp/action-slack-notify@v2.2.0

env:
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
SLACK_CHANNEL: cerberus-alerts
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:
python-version: [3.6]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v3.1.0
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand All @@ -41,7 +41,7 @@ jobs:
twine upload -u ${{secrets.PYPI_USERNAME}} -p ${{secrets.PYPI_PASSWORD}} dist/*
- name: Slack notification when release fails
if: ${{ failure() }}
uses: rtCamp/action-slack-notify@v2.1.2
uses: rtCamp/action-slack-notify@v2.2.0
env:
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
SLACK_CHANNEL: cerberus-alerts
Expand Down
2 changes: 1 addition & 1 deletion cerberus/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

__all__ = ['aws_auth', 'client', 'network_util', 'url_util', 'user_auth']

CLIENT_VERSION = '2.5.2'
CLIENT_VERSION = '2.5.3'


class CerberusClientException(Exception):
Expand Down

0 comments on commit 0a34fca

Please sign in to comment.