Sourced from actions/checkout's releases.
v4.2.2
What's Changed
url-helper.ts
now leverages well-known environment variables by@âjww3
in actions/checkout#1941- Expand unit test coverage for
isGhes
by@âjww3
in actions/checkout#1946Full Changelog: https://github.com/actions/checkout/compare/v4.2.1...v4.2.2
v4.2.1
What's Changed
- Check out other refs/* by commit if provided, fall back to ref by
@âorhantoy
in actions/checkout#1924New Contributors
@âJcambass
made their first contribution in actions/checkout#1919Full Changelog: https://github.com/actions/checkout/compare/v4.2.0...v4.2.1
Sourced from actions/checkout's changelog.
Changelog
v4.2.2
url-helper.ts
now leverages well-known environment variables by@âjww3
in actions/checkout#1941- Expand unit test coverage for
isGhes
by@âjww3
in actions/checkout#1946v4.2.1
- Check out other refs/* by commit if provided, fall back to ref by
@âorhantoy
in actions/checkout#1924v4.2.0
- Add Ref and Commit outputs by
@âlucacome
in actions/checkout#1180- Dependency updates by
@âdependabot
- actions/checkout#1777, actions/checkout#1872v4.1.7
- Bump the minor-npm-dependencies group across 1 directory with 4 updates by
@âdependabot
in actions/checkout#1739- Bump actions/checkout from 3 to 4 by
@âdependabot
in actions/checkout#1697- Check out other refs/* by commit by
@âorhantoy
in actions/checkout#1774- Pin actions/checkout's own workflows to a known, good, stable version. by
@âjww3
in actions/checkout#1776v4.1.6
- Check platform to set archive extension appropriately by
@âcory-miller
in actions/checkout#1732v4.1.5
- Update NPM dependencies by
@âcory-miller
in actions/checkout#1703- Bump github/codeql-action from 2 to 3 by
@âdependabot
in actions/checkout#1694- Bump actions/setup-node from 1 to 4 by
@âdependabot
in actions/checkout#1696- Bump actions/upload-artifact from 2 to 4 by
@âdependabot
in actions/checkout#1695- README: Suggest
user.email
to be41898282+github-actions[bot]@users.noreply.github.com
by@âcory-miller
in actions/checkout#1707v4.1.4
- Disable
extensions.worktreeConfig
when disablingsparse-checkout
by@âjww3
in actions/checkout#1692- Add dependabot config by
@âcory-miller
in actions/checkout#1688- Bump the minor-actions-dependencies group with 2 updates by
@âdependabot
in actions/checkout#1693- Bump word-wrap from 1.2.3 to 1.2.5 by
@âdependabot
in actions/checkout#1643v4.1.3
- Check git version before attempting to disable
sparse-checkout
by@âjww3
in actions/checkout#1656- Add SSH user parameter by
@âcory-miller
in actions/checkout#1685- Update
actions/checkout
version inupdate-main-version.yml
by@âjww3
in actions/checkout#1650v4.1.2
- Fix: Disable sparse checkout whenever
sparse-checkout
option is not present@âdscho
in actions/checkout#1598v4.1.1
- Correct link to GitHub Docs by
@âpeterbe
in actions/checkout#1511- Link to release page from what's new section by
@âcory-miller
in actions/checkout#1514v4.1.0
... (truncated)
11bd719
Prepare 4.2.2 Release (#1953)e3d2460
Expand unit test coverage (#1946)163217d
url-helper.ts
now leverages well-known environment variables. (#1941)eef6144
Prepare 4.2.1 release (#1925)6b42224
Add workflow file for publishing releases to immutable action package (#1919)de5a000
Check out other refs/* by commit if provided, fall back to ref (#1924)Sourced from coverallsapp/github-action's releases.
v2.3.4
What's Changed
- Add
coverage-reporter-platform
input option by@âafinetooth
in coverallsapp/github-action#233
- Since we have added support for
coverage-reporter
onaarch64
, we need to provide users of ourgithub-action
the ability to select this architecture-specific version ofcoverage-reporter
when they're using anaarch64
/arm64
runner in CI.Full Changelog: https://github.com/coverallsapp/github-action/compare/v2...v2.3.4
v2.3.3
What's Changed
- Make sure the major version tag always points to the latest release (fixes #222) by
@âafinetooth
in coverallsapp/github-action#230Full Changelog: https://github.com/coverallsapp/github-action/compare/v2...v2.3.3
v2.3.2
What's Changed
- Verify that
coverage-reporter-version
option is recognized by@âafinetooth
in coverallsapp/github-action#229- Add
build-number
to supported inputs options by@âafinetooth
and@âbrianatgather
in coverallsapp/github-action#228- Change
sha256sum
command flag to be compatible withalpine
linux distros by@âafinetooth
and@âjdebbink
in coverallsapp/github-action#227- Docs: Fix the action version in usage example by
@âJeff-Tian
in coverallsapp/github-action#210New Contributors
@âbrianatgather
made their first contribution in coverallsapp/github-action#228 / coverallsapp/github-action#199@âjdebbink
made their first contribution in coverallsapp/github-action#227 / coverallsapp/github-action#198@âJeff-Tian
made their first contribution in coverallsapp/github-action#210Full Changelog: https://github.com/coverallsapp/github-action/compare/v2.3.1...v2.3.2
v2.3.1
What's Changed
Extend behavior of
fail-on-error
option to setup failures by@âafinetooth
in coverallsapp/github-action#226
Technically an enhancement, these changes make the action behave as many customers already expect by ignoring any and all failures when the
fail-on-error
input is set tofalse
.Adds logic to handle any failures in "setup" tasks, including downloading the
coverage-reporter
binary, verifying the binary, and finding the binary by its expected name after extraction.The new logic checks these actions and exits with code
1
on failure, except iffail-on-error
is set totrue
, in which case it returns exit code0
.Adds a matrix workflow that tests the action for each
os
and the two key binary commands (coveralls report
andcoevralls done
). Each of these scenarios implicitly tests our setup tasks since they run first in each scenario.Also extends the behavior of
debug: true
to flip the shell-specific debug flag for eachos
includingset -x
forlinux
andmacos
andSet-PSDebug -Trace 1
forwindows
.Full Changelog: https://github.com/coverallsapp/github-action/compare/v2.3.0...v2.3.1
cfd0633
Add coverage-reporter-platform
input option (#233)0db2c3c
Update README.md29d7fa2
Add two more helpful steps to update-major-version-tag workflow (#231)4cdef0b
Always point the major version tag to the latest release (#230)43f11c4
Verify that coverage-reporter-version
option is recognized (#229)c258231
Add build number to supported inputs options (#228)0ae2400
Change command to to be compatible with alpine distros. (#227)f795697
Update README.md38d584d
Update README.md9a6b4a8
docs: fix the action version (#210)Sourced from actions/setup-java's releases.
v4.5.0
What's Changed
- Upgrade IA Publish by
@âJcambass
in #686Bug fixes:
- Improve archive extraction on windows runners without powershell core and Update micromatch dependency by
@âpriyagupta108
in #689- Update workflows for GraalVM and Version Enhancements by
@âmahabaleshwars
in #699- Refine
isGhes
logic by@âjww3
in #697New Contributors:
@âpriyagupta108
made their first contribution in actions/setup-java#689@âjww3
made their first contribution in actions/setup-java#697Full Changelog: https://github.com/actions/setup-java/compare/v4...v4.5.0