ArviZ.jl
ArviZ.jl copied to clipboard
Bump julia-actions/cache from 1 to 2
Bumps julia-actions/cache from 1 to 2.
Release notes
Sourced from julia-actions/cache's releases.
v2.0.0
Breaking Changes ⚠️
v2.0.0requiresnode20. This is a breaking change, becausenode20does not support the following operating systems:
- Red Hat Enterprise Linux 7
- CentOS 7
- Oracle Linux 7
- Debian 9
- Ubuntu 16.04
- Linux Mint 18
- openSUSE 15
- SUSE Enterprise Linux (SLES) 12 SP2
- Windows 7 64-bit
- Windows 8.1 64-bit
Therefore, if you are using self-hosted runners on one of the above operating systems, you won't be able to run
v2of this action.In contrast,
v1of this action usesnode16.What's Changed
- fix: Attempt to install jq on all runners by
@musokein julia-actions/cache#105- Pin third party action to hash by
@SaschaMannin julia-actions/cache#106- Mention why the extra permissions are required by
@rikhuijzerin julia-actions/cache#108- More accurate info about GitHub cache retion policy by
@giordanoin julia-actions/cache#111- Only run Dependabot once per month, but increase the PR limit by
@DilumAluthgein julia-actions/cache#115- Update actions/cache to v3.3.3 by
@IanButterworthin julia-actions/cache#121- Bump julia-actions/setup-julia from 1 to 2 by
@dependabotin julia-actions/cache#116- Bump actions/checkout from 4.1.1 to 4.1.2 by
@dependabotin julia-actions/cache#118- Bump pyTooling/Actions from 0.4.6 to 1.0.1 by
@dependabotin julia-actions/cache#117- update setup-julia to v2 in readme by
@IanButterworthin julia-actions/cache#124- Bump actions/checkout from 4.1.2 to 4.1.4 by
@dependabotin julia-actions/cache#126- Bump pyTooling/Actions from 1.0.1 to 1.0.5 by
@dependabotin julia-actions/cache#127- Bump actions/cache from 3.3.3 to 4.0.2 by
@dependabotin julia-actions/cache#123New Contributors
@musokemade their first contribution in julia-actions/cache#105@giordanomade their first contribution in julia-actions/cache#111@DilumAluthgemade their first contribution in julia-actions/cache#115Full Changelog: https://github.com/julia-actions/cache/compare/v1.5.2...v2.0.0
v1.5.2: Cache tidy fixes. Existing registry fix.
What's Changed
- Delete cache entries only on the workflow branch by
@omusin julia-actions/cache#97- Test cache action against Julia 1.0 and nightly by
@omusin julia-actions/cache#101- Avoid corrupting existing cloned Julia registries by
@omusin julia-actions/cache#102- Pass cache-name between save/restore jobs by
@omusin julia-actions/cache#103- make depot if not restored by
@IanButterworthin julia-actions/cache#91
... (truncated)
Changelog
Sourced from julia-actions/cache's changelog.
Part 1: Use the Git CLI to create and push the Git tags
Step 1: Create a new lightweight tag of the form
vMAJOR.MINOR.PATCH.git clone [email protected]:julia-actions/cache.git cd cache git fetch --all --tagsgit checkout main
git --no-pager log -1
Take note of the commit hash here.
Now, create a new lightweight tag of the form
vMAJOR.MINOR.PATCH.Replace
commit_hashwith the commit hash that you obtained from the
git log -1step.Replace
v2.2.0with the actual version number that you want to use.git tag v2.2.0 commit_hash
Step 2: Once you've created the new release, you need to update the
v2tag to point to the new release. For example, suppose that the previous release wasv2.1.0, and suppose that you just created the new releasev2.2.0. You need to update thev2tag so that it points tov2.2.0. Here are the commands:# Create/update the new v2 tag locally, where the new v2 tag will point to the # release that you created in the previous step. # # Make sure to change `v2.2.0` to the actual value for the tag that you just # created in the previous step. # # The `-f` flag forcibly overwrites the old # `v2` tag (if it exists). git tag -f v2 v2.2.0Step 3: Now you need to push the tags:
# Regular-push the new `v2.2.0` tag: git push origin tag v2.2.0Force-push the new v2 tag:
git push origin tag v2 --force
Part 2: Create the GitHub Release
Go to the Releases section of this repo and create a new release (using the GitHub web interface).
... (truncated)
Commits
d48542bBump actions/cache from 3.3.3 to 4.0.2 (#123)caa6556Bump pyTooling/Actions from 1.0.1 to 1.0.5 (#127)1c20782Bump actions/checkout from 4.1.2 to 4.1.4 (#126)4b23ab7update setup-julia to v2 in readme (#124)cc87ef3Bump pyTooling/Actions from 0.4.6 to 1.0.1 (#117)c363897Bump actions/checkout from 4.1.1 to 4.1.2 (#118)1b0706cBump julia-actions/setup-julia from 1 to 2 (#116)8b63b4aUpdate actions/cache to v3.3.3 (#121)0413f3bOnly run Dependabot once per month, but increase the PR limit (#115)e8521d4More accurate info about GitHub cache retion policy (#111)- Additional commits viewable in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)