From 145e48b05121effa44ae6c1d231966737f1e7910 Mon Sep 17 00:00:00 2001 From: Olivier Bilodeau Date: Tue, 5 Dec 2023 14:31:13 -0500 Subject: [PATCH 1/2] Getting rid of node deprecation notices and shorter names --- .github/workflows/ci.yml | 14 +++++++------- .github/workflows/dockerhub.yml | 4 ++-- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 86f6a8007..68ed253d1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Build Docker image run: docker build -t pyrdp . - name: "Smoke test docker image: pyrdp-convert" @@ -39,10 +39,10 @@ jobs: python-version: ['3.7', '3.11'] runs-on: ${{ matrix.os }} - name: Install and test on Ubuntu ${{ matrix.os }} with Python ${{ matrix.python-version }} + name: Ubuntu ${{ matrix.os }} with Python ${{ matrix.python-version }} steps: - - uses: actions/checkout@v2 - - uses: actions/setup-python@v1 + - uses: actions/checkout@v3 + - uses: actions/setup-python@v3 with: python-version: ${{ matrix.python-version }} architecture: 'x64' @@ -110,10 +110,10 @@ jobs: # FIXME: Windows with 3.11 doesn't work since PySide2 isn't supported. see #436 python-version: ['3.7', '3.10'] - name: Install and test on Windows with Python ${{ matrix.python-version }} + name: Windows with Python ${{ matrix.python-version }} steps: - - uses: actions/checkout@v2 - - uses: actions/setup-python@v1 + - uses: actions/checkout@v3 + - uses: actions/setup-python@v3 with: python-version: ${{ matrix.python-version }} architecture: 'x64' diff --git a/.github/workflows/dockerhub.yml b/.github/workflows/dockerhub.yml index e57315dd0..7221d5ea9 100644 --- a/.github/workflows/dockerhub.yml +++ b/.github/workflows/dockerhub.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the repo - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Log in to Docker Hub uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9 @@ -41,7 +41,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the repo - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Set up QEMU uses: docker/setup-qemu-action@v1 From 6f8927365f576d029a692b2e5a2bd3df2267aeb1 Mon Sep 17 00:00:00 2001 From: Olivier Bilodeau Date: Tue, 5 Dec 2023 14:40:38 -0500 Subject: [PATCH 2/2] Updated CHANGELOG --- CHANGELOG.adoc | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc index 5a1c77502..2b61b5025 100644 --- a/CHANGELOG.adoc +++ b/CHANGELOG.adoc @@ -33,6 +33,7 @@ For a detailed view of what has changed, refer to the {uri-repo}/commits/master[ * Added Python 3.10 tests on Windows to CI test configuration ({uri-issue}439[#439]) * Replaced Python 3.10 with Python 3.11 for CI test configuration ({uri-issue}438[#438]) * Added Ubuntu 20.04 in CI test configuration +* Deprecation cleanup in CI ({uri-issue}452[#452]) == v1.2.0 - 2022-12-23