From e2a5a1afd5d7305b13671410c52a31819ab9fad9 Mon Sep 17 00:00:00 2001 From: Tatyana Kostromskaya <32135588+takost@users.noreply.github.com> Date: Mon, 4 Sep 2023 11:56:05 +0000 Subject: [PATCH 1/2] Release 4.0.0 --- CHANGELOG.md | 4 ++++ package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 886756285..072f2675f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## v4.0.0 +- [Support fetching without the --progress option](https://github.com/actions/checkout/pull/1067) +- [Update to node20](https://github.com/actions/checkout/pull/1436) + ## v3.6.0 - [Fix: Mark test scripts with Bash'isms to be run via Bash](https://github.com/actions/checkout/pull/1377) - [Add option to fetch tags even if fetch-depth > 0](https://github.com/actions/checkout/pull/579) diff --git a/package-lock.json b/package-lock.json index ec979ede5..6b77be1d4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "checkout", - "version": "3.6.0", + "version": "4.0.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "checkout", - "version": "3.6.0", + "version": "4.0.0", "license": "MIT", "dependencies": { "@actions/core": "^1.10.0", diff --git a/package.json b/package.json index 61711c47f..84d643026 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "checkout", - "version": "3.6.0", + "version": "4.0.0", "description": "checkout action", "main": "lib/main.js", "scripts": { From da0d36f6fd04b856c7b110e51878e6936c1ef43f Mon Sep 17 00:00:00 2001 From: Tatyana Kostromskaya <32135588+takost@users.noreply.github.com> Date: Mon, 4 Sep 2023 12:07:32 +0000 Subject: [PATCH 2/2] Add new major version to workflow --- .github/workflows/update-main-version.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/update-main-version.yml b/.github/workflows/update-main-version.yml index 9e2b966d7..e2dc11134 100644 --- a/.github/workflows/update-main-version.yml +++ b/.github/workflows/update-main-version.yml @@ -11,6 +11,7 @@ on: type: choice description: The major version to update options: + - v4 - v3 - v2