diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 826a4aa..7c36fd9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,9 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ ubuntu-latest, macos-latest ] + os: + - ubuntu-latest + - macos-12 # Later versions of ARM-based macOS runners fail because the hypervisor framework required for Docker is not supported python: [ "3.8", "3.9", "3.10", "3.11"] node: [ 20 ] env: @@ -47,7 +49,8 @@ jobs: id: install_mac_docker if: runner.os == 'macOS' run: | - brew install docker + brew install docker --cask + brew install colima # Docker engine is no longer available because of licensing # Alternative Colima is part of the github macOS runner # SAM v1.47.0+ needed for colima support, unable to use Python 3.6 diff --git a/package.json b/package.json index 0135ab5..4248584 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@amazon-web-services-cloudformation/cloudformation-cli-typescript-lib", - "version": "1.0.5", + "version": "1.0.6", "description": "The CloudFormation Resource Provider Development Kit (RPDK) allows you to author your own resource providers that can be used by CloudFormation. This plugin library helps to provide runtime bindings for the execution of your providers by CloudFormation.", "private": false, "main": "dist/index.js", diff --git a/python/rpdk/typescript/__init__.py b/python/rpdk/typescript/__init__.py index c136502..affdd60 100644 --- a/python/rpdk/typescript/__init__.py +++ b/python/rpdk/typescript/__init__.py @@ -1,5 +1,5 @@ import logging -__version__ = "1.0.3" +__version__ = "1.0.4" logging.getLogger(__name__).addHandler(logging.NullHandler())