From 0f24549dde10e862d539041149bede1819fd92f9 Mon Sep 17 00:00:00 2001 From: Samuel Ryan Date: Sat, 7 Sep 2024 03:19:28 +0700 Subject: [PATCH] fix: Correct order of examples in notice --- src/extract.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/extract.js b/src/extract.js index 5a97349..87b1904 100644 --- a/src/extract.js +++ b/src/extract.js @@ -11,7 +11,7 @@ async function run() { core.notice([ 'As you did not specify a docker extract destination, the default is being used.', 'As of shrink/actions-docker-extract@3.0.1 the default does not include a dot prefix.', - `v3.0.0: "${destination}", v3.0.1: ".${destination}"`, + `v3.0.0: ".${destination}", v3.0.1: "${destination}"`, 'See https://github.com/shrink/actions-docker-extract/issues/28 for context.', 'No action is required unless this Workflow depends upon the dot prefix.', ].join(' '));