Skip to content

Commit

Permalink
Update github actions (#135)
Browse files Browse the repository at this point in the history
* Update github actions

* Update Changelog

Fix #134
  • Loading branch information
pylipp committed Nov 7, 2022
1 parent 89a6e6a commit 2d15298
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Cache pip
uses: actions/cache@v2
uses: actions/cache@v3
with:
# This path is specific to Ubuntu
path: ~/.cache/pip
Expand All @@ -48,7 +48,7 @@ jobs:
pip install -U -e .[develop]
pip install -U coveralls
- name: Run style-checks
uses: pre-commit/action@v2.0.0
uses: pre-commit/action@v3.0.0
- name: Run test suite
run: |
coverage erase
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
Expand Down
4 changes: 4 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
### Removed
### Deprecated

## [v1.1.5] - 2022-11-07
### Changed
- Update GitHub actions to avoid deprecation warnings during CI runs. (#134)

## [v1.1.4] - 2022-11-06
### Added
- Officially support Python 3.11. (#133)
Expand Down

0 comments on commit 2d15298

Please sign in to comment.