diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7fd4f81..ba0853e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 @@ -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 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f9d5bbf..4ee3f84 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 diff --git a/Changelog.md b/Changelog.md index 9f3189f..455ba2d 100644 --- a/Changelog.md +++ b/Changelog.md @@ -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)