Skip to content

Commit

Permalink
fix(deps): bump actions/checkout from 3 to 4
Browse files Browse the repository at this point in the history
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](actions/checkout@v3...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored Sep 11, 2023
1 parent 45d2085 commit 1fa1c3f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.action-setup-haxe-targets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.action-test-with-haxe.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test-with-haxe.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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


##################################################
Expand All @@ -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 }}
Expand All @@ -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 }}" \
Expand Down

0 comments on commit 1fa1c3f

Please sign in to comment.