Skip to content

Commit

Permalink
Merge pull request #452 from GoSecure/ci-warning-fixes
Browse files Browse the repository at this point in the history
Getting rid of node deprecation notices and shorter names
  • Loading branch information
obilodeau committed Dec 5, 2023
2 parents 6c4c7a4 + 6f89273 commit d679f1c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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'
Expand Down Expand Up @@ -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'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/dockerhub.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d679f1c

Please sign in to comment.