From 1fa1c3f609cea5112bc31c4383a6712b4a896e95 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Sep 2023 09:17:39 +0000 Subject: [PATCH] fix(deps): bump actions/checkout from 3 to 4 Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build.action-setup-haxe-targets.yml | 2 +- .github/workflows/build.action-test-with-haxe.yml | 2 +- .github/workflows/test-with-haxe.yml | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.action-setup-haxe-targets.yml b/.github/workflows/build.action-setup-haxe-targets.yml index 19eeef6..380cc6e 100644 --- a/.github/workflows/build.action-setup-haxe-targets.yml +++ b/.github/workflows/build.action-setup-haxe-targets.yml @@ -51,7 +51,7 @@ jobs: run: env | sort - name: Git Checkout - uses: actions/checkout@v3 #https://github.com/actions/checkout + uses: actions/checkout@v4 #https://github.com/actions/checkout - name: "Install: Haxe compiler targets" uses: ./.github/actions/setup-haxe-targets diff --git a/.github/workflows/build.action-test-with-haxe.yml b/.github/workflows/build.action-test-with-haxe.yml index c5daad9..6dd24aa 100644 --- a/.github/workflows/build.action-test-with-haxe.yml +++ b/.github/workflows/build.action-test-with-haxe.yml @@ -57,7 +57,7 @@ jobs: run: env | sort - name: Git Checkout - uses: actions/checkout@v3 #https://github.com/actions/checkout + uses: actions/checkout@v4 #https://github.com/actions/checkout - name: "Test with Haxe" uses: ./.github/actions/test-with-haxe diff --git a/.github/workflows/test-with-haxe.yml b/.github/workflows/test-with-haxe.yml index 58c2c95..406f0ea 100644 --- a/.github/workflows/test-with-haxe.yml +++ b/.github/workflows/test-with-haxe.yml @@ -125,7 +125,7 @@ jobs: run: env | sort - name: Git Checkout - uses: actions/checkout@v3 #https://github.com/actions/checkout + uses: actions/checkout@v4 #https://github.com/actions/checkout ################################################## @@ -136,7 +136,7 @@ jobs: # - https://github.com/community/community/discussions/31054 - name: "Git checkout workflow repo" if: env.ACT != 'true' # https://github.com/nektos/act#skipping-steps - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: path: ./.github/temp/haxe-reusable-workflows repository: ${{ inputs.haxe-reusable-workflows-repo }} @@ -154,7 +154,7 @@ jobs: if [[ -f ./.github/actions/setup-haxe-targets/action.yml ]]; then (set -x; ln -s "$PWD" ./.github/temp/haxe-reusable-workflows) else - # checkout "actions/checkout@v3" fails with "using ::error::Input required and not supplied: token", so we do it old school + # checkout "actions/checkout@v4" fails with "using ::error::Input required and not supplied: token", so we do it old school (set -x; git clone "https://github.com/${{ inputs.haxe-reusable-workflows-repo }}" \ --depth 1 --single-branch \ -b "${{ inputs.haxe-reusable-workflows-version }}" \