From 04ab9f9a1c9e7839d6d5c6fb04934f1347f84618 Mon Sep 17 00:00:00 2001 From: Yousaf Nabi Date: Tue, 11 Jul 2023 15:49:51 +0100 Subject: [PATCH] chore: update pact-ruby-standalone to 2.0.3 --- Makefile | 2 +- scripts/pact.ps1 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 375d212da..835583a3b 100755 --- a/Makefile +++ b/Makefile @@ -33,7 +33,7 @@ deps: install: @if [ ! -d pact/bin ]; then\ echo "--- 🐿 Installing Pact CLI dependencies"; \ - curl -fsSL https://raw.githubusercontent.com/pact-foundation/pact-ruby-standalone/master/install.sh | tag=v2.0.1 bash -x; \ + curl -fsSL https://raw.githubusercontent.com/pact-foundation/pact-ruby-standalone/master/install.sh | tag=v2.0.3 bash -x; \ fi publish_pacts: diff --git a/scripts/pact.ps1 b/scripts/pact.ps1 index 61a1d8279..5f887e2ab 100644 --- a/scripts/pact.ps1 +++ b/scripts/pact.ps1 @@ -23,7 +23,7 @@ $downloadDir = $env:TEMP $latestRelease = Invoke-WebRequest https://github.com/pact-foundation/pact-ruby-standalone/releases/latest -Headers @{"Accept"="application/json"} $json = $latestRelease.Content | ConvertFrom-Json # $tag = $json.tag_name -$tag = "v2.0.1" # TODO: Remove this when the 2.x is set to a non-prerelease version +$tag = "v2.0.3" # NOTE: pins pact-ruby-standalone to a fixed version $latestVersion = $tag.Substring(1) $url = "https://github.com/pact-foundation/pact-ruby-standalone/releases/download/$tag/pact-$latestVersion-windows-x86.zip"