Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

singular fails factorization over a numberfield (fixed upstream) #872

Closed
sagetrac-mabshoff mannequin opened this issue Oct 13, 2007 · 9 comments
Closed

singular fails factorization over a numberfield (fixed upstream) #872

sagetrac-mabshoff mannequin opened this issue Oct 13, 2007 · 9 comments

Comments

@sagetrac-mabshoff
Copy link
Mannequin

sagetrac-mabshoff mannequin commented Oct 13, 2007

See also http://www.singular.uni-kl.de/forum/viewtopic.php?t=1639

But since it was reported by a Sage user it is worth tracking here:

mabshoff@sage:/tmp/Work-mabshoff/sage-2.8.6/local/bin$ ./valgrind --tool=memcheck --leak-resolution=high ./Singular-3-0-3
==25414== Memcheck, a memory error detector.
==25414== Copyright (C) 2002-2007, and GNU GPL'd, by Julian Seward  et al.
==25414== Using LibVEX rev 1788, a library for dynamic binary translation.
==25414== Copyright (C) 2004-2007, and GNU GPL'd, by OpenWorks LLP.
==25414== Using valgrind-3.3.0.SVN, a dynamic binary instrumentation framework.
==25414== Copyright (C) 2000-2007, and GNU GPL'd, by Julian Seward et al.
==25414== For more details, rerun with: -v
==25414==
                     SINGULAR                             /  Development
 A Computer Algebra System for Polynomial Computations   /   version 3-0-3
                                                       0<
     by: G.-M. Greuel, G. Pfister, H. Schoenemann        \   May 2007
FB Mathematik der Universitaet, D-67653 Kaiserslautern    \
> ring r=(0,a),(x),dp;
> minpoly=a^2+1;
> factorize(x^18+1);
start Factorize2(int_flag=0)
end Factorize2(0)
[1]:
   _[1]=1
   _[2]=x6+(-a)*x3-1
   _[3]=x6+(a)*x3-1
   _[4]=x2+(a)*x-1
   _[5]=x2+(-a)*x-1
   _[6]=x+(-a)
   _[7]=x+(a)
[2]:
   1,1,1,1,1,1,1
> factorize(x^20+1);
start Factorize2(int_flag=0)
==25414== Source and destination overlap in memcpy(0x4214460, 0x4215300, 3752)
==25414==    at 0x4A1DA2B: memcpy (mc_replace_strmem.c:402)
==25414==    by 0x66F7A0: rEALLOc (in /tmp/Work-mabshoff/sage-2.8.6/local/bin/Singular-3-0-3)
==25414==    by 0x669788: omReallocSizeFromSystem (in /tmp/Work-mabshoff/sage-2.8.6/local/bin/Singular-3-0-3)
==25414==    by 0x6698A0: omReallocLarge (in /tmp/Work-mabshoff/sage-2.8.6/local/bin/Singular-3-0-3)
==25414==    by 0x5CA5F6: reallocSize (in /tmp/Work-mabshoff/sage-2.8.6/local/bin/Singular-3-0-3)
==25414==    by 0x4F04E30: __gmpz_realloc (in /tmp/Work-mabshoff/sage-2.8.6/local/lib/libgmp.so.3.4.1)
==25414==    by 0x4EF76FE: __gmpz_add (in /tmp/Work-mabshoff/sage-2.8.6/local/lib/libgmp.so.3.4.1)
==25414==    by 0x654485: InternalInteger::addsame(InternalCF*) (in /tmp/Work-mabshoff/sage-2.8.6/local/bin/Singular-3-0-3)
==25414==    by 0x628FD7: CanonicalForm::operator+=(CanonicalForm const&) (in /tmp/Work-mabshoff/sage-2.8.6/local/bin/Singular-3-0-3)
==25414==    by 0x657B95: InternalPoly::mulAddTermList(term*, term*, CanonicalForm const&, int, term*&, bool) (in /tmp/Work-mabshoff/sage-2.8.6/local/bin/Singular-3-0-3)
==25414==    by 0x657F4E: InternalPoly::mulsame(InternalCF*) (in /tmp/Work-mabshoff/sage-2.8.6/local/bin/Singular-3-0-3)
==25414==    by 0x627D44: CanonicalForm::operator*=(CanonicalForm const&) (in /tmp/Work-mabshoff/sage-2.8.6/local/bin/Singular-3-0-3)

error: no more memory
System 9920k:19584k Appl 8315k/1604k Malloc 8234k/1173k Valloc 512k/431k Pages 57/71 Regions 1:1

halt 14
==25414==
==25414== ERROR SUMMARY: 11 errors from 1 contexts (suppressed: 13 from 2)
==25414== malloc/free: in use at exit: 0 bytes in 0 blocks.
==25414== malloc/free: 0 allocs, 0 frees, 0 bytes allocated.
==25414== For counts of detected errors, rerun with: -v
==25414== All heap blocks were freed -- no leaks are possible.

Cheers,

Michael

Component: packages: standard

Keywords: singular, number, fields, factorization

Issue created by migration from https://trac.sagemath.org/ticket/872

@sagetrac-mabshoff sagetrac-mabshoff mannequin added this to the sage-2.9 milestone Oct 13, 2007
@sagetrac-mabshoff sagetrac-mabshoff mannequin assigned malb Oct 13, 2007
@sagetrac-cwitty
Copy link
Mannequin

sagetrac-cwitty mannequin commented Oct 13, 2007

comment:1

BTW: It is now my belief that the memcpy error discovered by Michael is not the cause of the problem. I rebuilt Singular in "omalloc just wraps the system malloc" mode and that valgrind problem report went away, but the infinite loop (or extreme slowness, at least) remains.

@sagetrac-cwitty
Copy link
Mannequin

sagetrac-cwitty mannequin commented Oct 14, 2007

comment:3

I have tracked down the problem. It is due to coefficient explosion in libfac/charset/csutil.cc:alg_gcd() (which implements the Euclidean gcd algorithm). There is an attempt to control the coefficient size in the function myfitting(), but it is ineffective for this problem.

myfitting() controls coefficient size by dividing by the leading coefficient (an integer), and then clearing denominators. I have attached a patch that makes myfitting use a different notion of "leading coefficient", where the algebraic variable is considered to be part of the coefficient domain.

This patch does vastly speed up this particular problem, but I would like somebody who knows more about the internals of Singular to look at it before it gets applied (so I am not yet marking it "with patch").

@sagetrac-cwitty
Copy link
Mannequin

sagetrac-cwitty mannequin commented Oct 14, 2007

Attachment: singular-alg_gcd.patch.gz

a potential patch for libfac/charset/csutil.cc

@sagetrac-cwitty
Copy link
Mannequin

sagetrac-cwitty mannequin commented Oct 17, 2007

comment:4

My patch has been accepted into the upstream Singular (as well as the invalid call to memcpy noted by Michael in the first comment to this ticket). I'm told that this:
ftp://www.mathematik.uni-kl.de/pub/Math/Singular/src/3-0-3/Singular-3-0-3-2.tar.gz
has both changes.

@sagetrac-cwitty sagetrac-cwitty mannequin changed the title singular fails factorization over a numberfield singular fails factorization over a numberfield (fixed upstream) Oct 17, 2007
@williamstein
Copy link
Contributor

comment:5

[11:50am] wstein2: hi: regarding #872.
[11:50am] wstein2: the new spkg definitely fixes the bug reported there with factoring.
[11:51am] wstein2: But I tried factoring in a 2-variable ring and it quickly runs out of steam. E.g., this fails:
[11:51am] wstein2: > ring r=(0,a),(x,y),dp;
[11:51am] wstein2: > minpoly = a^2+1;
[11:51am] wstein2: > factorize(x^12 + y^12);

@williamstein

This comment has been minimized.

@williamstein
Copy link
Contributor

comment:6
[11:50am] wstein2: hi: regarding #872.
[11:50am] wstein2: the new spkg definitely fixes the bug reported there with factoring.
[11:51am] wstein2: But I tried factoring in a 2-variable ring and it quickly runs out of steam.  E.g., this fails:
[11:51am] wstein2: > ring r=(0,a),(x,y),dp;
[11:51am] wstein2: > minpoly = a^2+1;
[11:51am] wstein2: > factorize(x^12 + y^12);

@williamstein
Copy link
Contributor

comment:7

Magma is much better:

bsd0:~ was$ magma
Magma V2.13-10    Sat Oct 20 2007 11:53:54 on bsd0     [Seed = 3168908577]
Type ? for help.  Type <Ctrl>-D to quit.
K<i> := NumberField(x^2 + 1^H>                            
> 
> R<x> := PolynomialRing(RationalField());
> K<i> := NumberField(x^2 + 1);
> S<y,z> := PolynomialRing(K, 2);
> time Factorization(y^4 - z^4);
[
    <y - z, 1>,
    <y + z, 1>,
    <y - i*z, 1>,
    <y + i*z, 1>
]
Time: 0.030
> time Factorization(y^12 - z^12);
[
    <y - z, 1>,
    <y + z, 1>,
    <y - i*z, 1>,
    <y + i*z, 1>,
    <y^2 - y*z + z^2, 1>,
    <y^2 + y*z + z^2, 1>,
    <y^2 - i*y*z - z^2, 1>,
    <y^2 + i*y*z - z^2, 1>
]
Time: 0.030
> time Factorization(y^20 - z^20);
[
    <y - z, 1>,
    <y + z, 1>,
    <y - i*z, 1>,
    <y + i*z, 1>,
    <y^4 - y^3*z + y^2*z^2 - y*z^3 + z^4, 1>,
    <y^4 + y^3*z + y^2*z^2 + y*z^3 + z^4, 1>,
    <y^4 - i*y^3*z - y^2*z^2 + i*y*z^3 + z^4, 1>,
    <y^4 + i*y^3*z - y^2*z^2 - i*y*z^3 + z^4, 1>
]
Time: 0.050

@fchapoton
Copy link
Contributor

Changed keywords from none to singular, number, fields, factorization

vbraun pushed a commit to vbraun/sage that referenced this issue Dec 11, 2024
    
Bumps [codecov/codecov-action](https://github.com/codecov/codecov-
action) from 4 to 5.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/codecov/codecov-
action/releases">codecov/codecov-action's releases</a>.</em></p>
<blockquote>
<h2>v5.0.0</h2>
<h2>v5 Release</h2>
<p><code>v5</code> of the Codecov GitHub Action will use the <a
href="https://github.com/codecov/wrapper">Codecov Wrapper</a> to
encapsulate the <a href="https://github.com/codecov/codecov-
cli">CLI</a>. This will help ensure that the Action gets updates
quicker.</p>
<h3>Migration Guide</h3>
<p>The <code>v5</code> release also coincides with the opt-out feature
for tokens for public repositories. In the <code>Global Upload
Token</code> section of the settings page of an organization in
codecov.io, you can set the ability for Codecov to receive a coverage
reports from any source. This will allow contributors or other members
of a repository to upload without needing access to the Codecov token.
For more details see <a href="https://docs.codecov.com/docs/codecov-
tokens#uploading-without-a-token">how to upload without a token</a>.</p>
<blockquote>
<p>[!WARNING]<br />
<strong>The following arguments have been changed</strong></p>
<ul>
<li><code>file</code> (this has been deprecated in favor of
<code>files</code>)</li>
<li><code>plugin</code> (this has been deprecated in favor of
<code>plugins</code>)</li>
</ul>
</blockquote>
<p>The following arguments have been added:</p>
<ul>
<li><code>binary</code></li>
<li><code>gcov_args</code></li>
<li><code>gcov_executable</code></li>
<li><code>gcov_ignore</code></li>
<li><code>gcov_include</code></li>
<li><code>report_type</code></li>
<li><code>skip_validation</code></li>
<li><code>swift_project</code></li>
</ul>
<p>You can see their usage in the <code>action.yml</code> <a
href="https://github.com/codecov/codecov-
action/blob/main/action.yml">file</a>.</p>
<h2>What's Changed</h2>
<ul>
<li>chore(deps): bump to eslint9+ and remove eslint-config-google by <a
href="https://github.com/thomasrockhu-codecov"><code>@​thomasrockhu-
codecov</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1591">codecov/codecov-action#1591</a></li>
<li>build(deps-dev): bump <code>@​octokit/webhooks-types</code> from
7.5.1 to 7.6.1 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1595">codecov/codecov-action#1595</a></li>
<li>build(deps-dev): bump typescript from 5.6.2 to 5.6.3 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1604">codecov/codecov-action#1604</a></li>
<li>build(deps-dev): bump <code>@​typescript-eslint/parser</code> from
8.8.0 to 8.8.1 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1601">codecov/codecov-action#1601</a></li>
<li>build(deps): bump <code>@​actions/core</code> from 1.11.0 to 1.11.1
by <a href="https://github.com/dependabot"><code>@​dependabot</code></a>
in <a href="https://redirect.github.com/codecov/codecov-
action/pull/1597">codecov/codecov-action#1597</a></li>
<li>build(deps): bump github/codeql-action from 3.26.9 to 3.26.11 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1596">codecov/codecov-action#1596</a></li>
<li>build(deps-dev): bump <code>@​typescript-eslint/eslint-plugin</code>
from 8.8.0 to 8.8.1 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1600">codecov/codecov-action#1600</a></li>
<li>build(deps-dev): bump eslint from 9.11.1 to 9.12.0 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1598">codecov/codecov-action#1598</a></li>
<li>build(deps): bump github/codeql-action from 3.26.11 to 3.26.12 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1609">codecov/codecov-action#1609</a></li>
<li>build(deps): bump actions/checkout from 4.2.0 to 4.2.1 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1608">codecov/codecov-action#1608</a></li>
<li>build(deps): bump actions/upload-artifact from 4.4.0 to 4.4.3 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1607">codecov/codecov-action#1607</a></li>
<li>build(deps-dev): bump <code>@​typescript-eslint/parser</code> from
8.8.1 to 8.9.0 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1612">codecov/codecov-action#1612</a></li>
<li>build(deps-dev): bump <code>@​typescript-eslint/eslint-plugin</code>
from 8.8.1 to 8.9.0 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1611">codecov/codecov-action#1611</a></li>
<li>build(deps-dev): bump <code>@​typescript-eslint/eslint-plugin</code>
from 8.9.0 to 8.10.0 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1615">codecov/codecov-action#1615</a></li>
<li>build(deps-dev): bump eslint from 9.12.0 to 9.13.0 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1618">codecov/codecov-action#1618</a></li>
<li>build(deps): bump github/codeql-action from 3.26.12 to 3.26.13 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1617">codecov/codecov-action#1617</a></li>
<li>build(deps-dev): bump <code>@​typescript-eslint/parser</code> from
8.9.0 to 8.10.0 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1614">codecov/codecov-action#1614</a></li>
<li>build(deps-dev): bump <code>@​typescript-eslint/eslint-plugin</code>
from 8.10.0 to 8.11.0 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1620">codecov/codecov-action#1620</a></li>
<li>build(deps-dev): bump <code>@​typescript-eslint/parser</code> from
8.10.0 to 8.11.0 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1619">codecov/codecov-action#1619</a></li>
<li>build(deps-dev): bump <code>@​types/jest</code> from 29.5.13 to
29.5.14 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1622">codecov/codecov-action#1622</a></li>
<li>build(deps): bump actions/checkout from 4.2.1 to 4.2.2 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1625">codecov/codecov-action#1625</a></li>
<li>build(deps): bump github/codeql-action from 3.26.13 to 3.27.0 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1624">codecov/codecov-action#1624</a></li>
<li>build(deps-dev): bump <code>@​typescript-eslint/eslint-plugin</code>
from 8.11.0 to 8.12.1 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1626">codecov/codecov-action#1626</a></li>
<li>build(deps-dev): bump <code>@​typescript-eslint/eslint-plugin</code>
from 8.12.1 to 8.12.2 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1629">codecov/codecov-action#1629</a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/codecov/codecov-
action/blob/main/CHANGELOG.md">codecov/codecov-action's
changelog</a>.</em></p>
<blockquote>
<h2>4.0.0-beta.2</h2>
<h3>Fixes</h3>
<ul>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/1085">sagemath#1085</a> not adding -n if empty to do-upload
command</li>
</ul>
<h2>4.0.0-beta.1</h2>
<p><code>v4</code> represents a move from the <a
href="https://github.com/codecov/uploader">universal uploader</a> to the
<a href="https://github.com/codecov/codecov-cli">Codecov CLI</a>.
Although this will unlock new features for our users, the CLI is not yet
at feature parity with the universal uploader.</p>
<h3>Breaking Changes</h3>
<ul>
<li>No current support for <code>aarch64</code> and <code>alpine</code>
architectures.</li>
<li>Tokenless uploading is unsuported</li>
<li>Various arguments to the Action have been removed</li>
</ul>
<h2>3.1.4</h2>
<h3>Fixes</h3>
<ul>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/967">sagemath#967</a> Fix typo in README.md</li>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/971">sagemath#971</a> fix: add back in working dir</li>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/969">sagemath#969</a> fix: CLI option names for uploader</li>
</ul>
<h3>Dependencies</h3>
<ul>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/970">sagemath#970</a> build(deps-dev): bump
<code>@​types/node</code> from 18.15.12 to 18.16.3</li>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/979">sagemath#979</a> build(deps-dev): bump
<code>@​types/node</code> from 20.1.0 to 20.1.2</li>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/981">sagemath#981</a> build(deps-dev): bump
<code>@​types/node</code> from 20.1.2 to 20.1.4</li>
</ul>
<h2>3.1.3</h2>
<h3>Fixes</h3>
<ul>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/960">sagemath#960</a> fix: allow for aarch64 build</li>
</ul>
<h3>Dependencies</h3>
<ul>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/957">sagemath#957</a> build(deps-dev): bump jest-junit from 15.0.0
to 16.0.0</li>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/958">sagemath#958</a> build(deps): bump openpgp from 5.7.0 to
5.8.0</li>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/959">sagemath#959</a> build(deps-dev): bump
<code>@​types/node</code> from 18.15.10 to 18.15.12</li>
</ul>
<h2>3.1.2</h2>
<h3>Fixes</h3>
<ul>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/718">sagemath#718</a> Update README.md</li>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/851">sagemath#851</a> Remove unsupported path_to_write_report
argument</li>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/898">sagemath#898</a> codeql-analysis.yml</li>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/901">sagemath#901</a> Update README to contain correct information
- inputs and negate feature</li>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/955">sagemath#955</a> fix: add in all the extra arguments for
uploader</li>
</ul>
<h3>Dependencies</h3>
<ul>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/819">sagemath#819</a> build(deps): bump openpgp from 5.4.0 to
5.5.0</li>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/835">sagemath#835</a> build(deps): bump node-fetch from 3.2.4 to
3.2.10</li>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/840">sagemath#840</a> build(deps): bump ossf/scorecard-action from
1.1.1 to 2.0.4</li>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/841">sagemath#841</a> build(deps): bump
<code>@​actions/core</code> from 1.9.1 to 1.10.0</li>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/843">sagemath#843</a> build(deps): bump
<code>@​actions/github</code> from 5.0.3 to 5.1.1</li>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/869">sagemath#869</a> build(deps): bump node-fetch from 3.2.10 to
3.3.0</li>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/872">sagemath#872</a> build(deps-dev): bump jest-junit from 13.2.0
to 15.0.0</li>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/879">sagemath#879</a> build(deps): bump decode-uri-component from
0.2.0 to 0.2.2</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="codecov/codecov-action@5c47607acb
93fed5485fdbf7232e8a31425f672a"><code>5c47607</code></a> fix: override
commit and pr values for PR cases (<a
href="https://redirect.github.com/codecov/codecov-
action/issues/1657">sagemath#1657</a>)</li>
<li><a href="codecov/codecov-action@3b1354a6c4
5db9f1008891f4eafc1a7e94ce1d18"><code>3b1354a</code></a> chore(release):
5.0.1 (<a href="https://redirect.github.com/codecov/codecov-
action/issues/1656">sagemath#1656</a>)</li>
<li><a href="codecov/codecov-action@2e2a9c6d58
62d22e0f8cfb59d46bc47bf8eb1fe0"><code>2e2a9c6</code></a> fix: update
tokenless branch logic (<a
href="https://redirect.github.com/codecov/codecov-
action/issues/1650">sagemath#1650</a>)</li>
<li><a href="codecov/codecov-action@cfc521b7a1
dcdbcf0ecf149c162c19ff9bd9568c"><code>cfc521b</code></a> Update
README.md</li>
<li><a href="codecov/codecov-action@06425412c8
015bc1ab2385b41c7ea204f77b91bf"><code>0642541</code></a> fix: use
marketplace v5 badge (<a
href="https://redirect.github.com/codecov/codecov-
action/issues/1646">sagemath#1646</a>)</li>
<li><a href="codecov/codecov-action@968872560f
81e7bdde9272853e65f2507c0eca7c"><code>9688725</code></a> Update
README.md</li>
<li><a href="codecov/codecov-action@2112eaec1b
edbdabc7e93d5312449d0d62b07c60"><code>2112eae</code></a> chore(deps):
bump wrapper to 0.0.23 (<a
href="https://redirect.github.com/codecov/codecov-
action/issues/1644">sagemath#1644</a>)</li>
<li><a href="codecov/codecov-action@193421c5b3
d1aca4209c9754f224ca0d85729414"><code>193421c</code></a> fixL use the
correct source (<a href="https://redirect.github.com/codecov/codecov-
action/issues/1642">sagemath#1642</a>)</li>
<li><a href="codecov/codecov-action@6018df70b0
5b191502ce08196e76e30ea3578615"><code>6018df7</code></a> fix: update
container builds (<a href="https://redirect.github.com/codecov/codecov-
action/issues/1640">sagemath#1640</a>)</li>
<li><a href="codecov/codecov-action@eff1a643d6
887ee5935d4ca343e9076dc377d416"><code>eff1a64</code></a> fix: add
missing vars (<a href="https://redirect.github.com/codecov/codecov-
action/issues/1638">sagemath#1638</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/codecov/codecov-action/compare/v4...v5">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility score](https://dependabot-
badges.githubapp.com/badges/compatibility_score?dependency-
name=codecov/codecov-action&package-manager=github_actions&previous-
version=4&new-version=5)](https://docs.github.com/en/github/managing-
security-vulnerabilities/about-dependabot-security-updates#about-
compatibility-scores)

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-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will 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 version` will 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 dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>
    
URL: sagemath#38990
Reported by: dependabot[bot]
Reviewer(s): Kwankyu Lee
vbraun pushed a commit to vbraun/sage that referenced this issue Dec 12, 2024
    
Bumps [codecov/codecov-action](https://github.com/codecov/codecov-
action) from 4 to 5.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/codecov/codecov-
action/releases">codecov/codecov-action's releases</a>.</em></p>
<blockquote>
<h2>v5.0.0</h2>
<h2>v5 Release</h2>
<p><code>v5</code> of the Codecov GitHub Action will use the <a
href="https://github.com/codecov/wrapper">Codecov Wrapper</a> to
encapsulate the <a href="https://github.com/codecov/codecov-
cli">CLI</a>. This will help ensure that the Action gets updates
quicker.</p>
<h3>Migration Guide</h3>
<p>The <code>v5</code> release also coincides with the opt-out feature
for tokens for public repositories. In the <code>Global Upload
Token</code> section of the settings page of an organization in
codecov.io, you can set the ability for Codecov to receive a coverage
reports from any source. This will allow contributors or other members
of a repository to upload without needing access to the Codecov token.
For more details see <a href="https://docs.codecov.com/docs/codecov-
tokens#uploading-without-a-token">how to upload without a token</a>.</p>
<blockquote>
<p>[!WARNING]<br />
<strong>The following arguments have been changed</strong></p>
<ul>
<li><code>file</code> (this has been deprecated in favor of
<code>files</code>)</li>
<li><code>plugin</code> (this has been deprecated in favor of
<code>plugins</code>)</li>
</ul>
</blockquote>
<p>The following arguments have been added:</p>
<ul>
<li><code>binary</code></li>
<li><code>gcov_args</code></li>
<li><code>gcov_executable</code></li>
<li><code>gcov_ignore</code></li>
<li><code>gcov_include</code></li>
<li><code>report_type</code></li>
<li><code>skip_validation</code></li>
<li><code>swift_project</code></li>
</ul>
<p>You can see their usage in the <code>action.yml</code> <a
href="https://github.com/codecov/codecov-
action/blob/main/action.yml">file</a>.</p>
<h2>What's Changed</h2>
<ul>
<li>chore(deps): bump to eslint9+ and remove eslint-config-google by <a
href="https://github.com/thomasrockhu-codecov"><code>@​thomasrockhu-
codecov</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1591">codecov/codecov-action#1591</a></li>
<li>build(deps-dev): bump <code>@​octokit/webhooks-types</code> from
7.5.1 to 7.6.1 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1595">codecov/codecov-action#1595</a></li>
<li>build(deps-dev): bump typescript from 5.6.2 to 5.6.3 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1604">codecov/codecov-action#1604</a></li>
<li>build(deps-dev): bump <code>@​typescript-eslint/parser</code> from
8.8.0 to 8.8.1 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1601">codecov/codecov-action#1601</a></li>
<li>build(deps): bump <code>@​actions/core</code> from 1.11.0 to 1.11.1
by <a href="https://github.com/dependabot"><code>@​dependabot</code></a>
in <a href="https://redirect.github.com/codecov/codecov-
action/pull/1597">codecov/codecov-action#1597</a></li>
<li>build(deps): bump github/codeql-action from 3.26.9 to 3.26.11 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1596">codecov/codecov-action#1596</a></li>
<li>build(deps-dev): bump <code>@​typescript-eslint/eslint-plugin</code>
from 8.8.0 to 8.8.1 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1600">codecov/codecov-action#1600</a></li>
<li>build(deps-dev): bump eslint from 9.11.1 to 9.12.0 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1598">codecov/codecov-action#1598</a></li>
<li>build(deps): bump github/codeql-action from 3.26.11 to 3.26.12 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1609">codecov/codecov-action#1609</a></li>
<li>build(deps): bump actions/checkout from 4.2.0 to 4.2.1 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1608">codecov/codecov-action#1608</a></li>
<li>build(deps): bump actions/upload-artifact from 4.4.0 to 4.4.3 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1607">codecov/codecov-action#1607</a></li>
<li>build(deps-dev): bump <code>@​typescript-eslint/parser</code> from
8.8.1 to 8.9.0 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1612">codecov/codecov-action#1612</a></li>
<li>build(deps-dev): bump <code>@​typescript-eslint/eslint-plugin</code>
from 8.8.1 to 8.9.0 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1611">codecov/codecov-action#1611</a></li>
<li>build(deps-dev): bump <code>@​typescript-eslint/eslint-plugin</code>
from 8.9.0 to 8.10.0 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1615">codecov/codecov-action#1615</a></li>
<li>build(deps-dev): bump eslint from 9.12.0 to 9.13.0 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1618">codecov/codecov-action#1618</a></li>
<li>build(deps): bump github/codeql-action from 3.26.12 to 3.26.13 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1617">codecov/codecov-action#1617</a></li>
<li>build(deps-dev): bump <code>@​typescript-eslint/parser</code> from
8.9.0 to 8.10.0 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1614">codecov/codecov-action#1614</a></li>
<li>build(deps-dev): bump <code>@​typescript-eslint/eslint-plugin</code>
from 8.10.0 to 8.11.0 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1620">codecov/codecov-action#1620</a></li>
<li>build(deps-dev): bump <code>@​typescript-eslint/parser</code> from
8.10.0 to 8.11.0 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1619">codecov/codecov-action#1619</a></li>
<li>build(deps-dev): bump <code>@​types/jest</code> from 29.5.13 to
29.5.14 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1622">codecov/codecov-action#1622</a></li>
<li>build(deps): bump actions/checkout from 4.2.1 to 4.2.2 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1625">codecov/codecov-action#1625</a></li>
<li>build(deps): bump github/codeql-action from 3.26.13 to 3.27.0 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1624">codecov/codecov-action#1624</a></li>
<li>build(deps-dev): bump <code>@​typescript-eslint/eslint-plugin</code>
from 8.11.0 to 8.12.1 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1626">codecov/codecov-action#1626</a></li>
<li>build(deps-dev): bump <code>@​typescript-eslint/eslint-plugin</code>
from 8.12.1 to 8.12.2 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1629">codecov/codecov-action#1629</a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/codecov/codecov-
action/blob/main/CHANGELOG.md">codecov/codecov-action's
changelog</a>.</em></p>
<blockquote>
<h2>4.0.0-beta.2</h2>
<h3>Fixes</h3>
<ul>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/1085">sagemath#1085</a> not adding -n if empty to do-upload
command</li>
</ul>
<h2>4.0.0-beta.1</h2>
<p><code>v4</code> represents a move from the <a
href="https://github.com/codecov/uploader">universal uploader</a> to the
<a href="https://github.com/codecov/codecov-cli">Codecov CLI</a>.
Although this will unlock new features for our users, the CLI is not yet
at feature parity with the universal uploader.</p>
<h3>Breaking Changes</h3>
<ul>
<li>No current support for <code>aarch64</code> and <code>alpine</code>
architectures.</li>
<li>Tokenless uploading is unsuported</li>
<li>Various arguments to the Action have been removed</li>
</ul>
<h2>3.1.4</h2>
<h3>Fixes</h3>
<ul>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/967">sagemath#967</a> Fix typo in README.md</li>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/971">sagemath#971</a> fix: add back in working dir</li>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/969">sagemath#969</a> fix: CLI option names for uploader</li>
</ul>
<h3>Dependencies</h3>
<ul>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/970">sagemath#970</a> build(deps-dev): bump
<code>@​types/node</code> from 18.15.12 to 18.16.3</li>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/979">sagemath#979</a> build(deps-dev): bump
<code>@​types/node</code> from 20.1.0 to 20.1.2</li>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/981">sagemath#981</a> build(deps-dev): bump
<code>@​types/node</code> from 20.1.2 to 20.1.4</li>
</ul>
<h2>3.1.3</h2>
<h3>Fixes</h3>
<ul>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/960">sagemath#960</a> fix: allow for aarch64 build</li>
</ul>
<h3>Dependencies</h3>
<ul>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/957">sagemath#957</a> build(deps-dev): bump jest-junit from 15.0.0
to 16.0.0</li>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/958">sagemath#958</a> build(deps): bump openpgp from 5.7.0 to
5.8.0</li>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/959">sagemath#959</a> build(deps-dev): bump
<code>@​types/node</code> from 18.15.10 to 18.15.12</li>
</ul>
<h2>3.1.2</h2>
<h3>Fixes</h3>
<ul>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/718">sagemath#718</a> Update README.md</li>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/851">sagemath#851</a> Remove unsupported path_to_write_report
argument</li>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/898">sagemath#898</a> codeql-analysis.yml</li>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/901">sagemath#901</a> Update README to contain correct information
- inputs and negate feature</li>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/955">sagemath#955</a> fix: add in all the extra arguments for
uploader</li>
</ul>
<h3>Dependencies</h3>
<ul>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/819">sagemath#819</a> build(deps): bump openpgp from 5.4.0 to
5.5.0</li>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/835">sagemath#835</a> build(deps): bump node-fetch from 3.2.4 to
3.2.10</li>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/840">sagemath#840</a> build(deps): bump ossf/scorecard-action from
1.1.1 to 2.0.4</li>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/841">sagemath#841</a> build(deps): bump
<code>@​actions/core</code> from 1.9.1 to 1.10.0</li>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/843">sagemath#843</a> build(deps): bump
<code>@​actions/github</code> from 5.0.3 to 5.1.1</li>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/869">sagemath#869</a> build(deps): bump node-fetch from 3.2.10 to
3.3.0</li>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/872">sagemath#872</a> build(deps-dev): bump jest-junit from 13.2.0
to 15.0.0</li>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/879">sagemath#879</a> build(deps): bump decode-uri-component from
0.2.0 to 0.2.2</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="codecov/codecov-action@5c47607acb
93fed5485fdbf7232e8a31425f672a"><code>5c47607</code></a> fix: override
commit and pr values for PR cases (<a
href="https://redirect.github.com/codecov/codecov-
action/issues/1657">sagemath#1657</a>)</li>
<li><a href="codecov/codecov-action@3b1354a6c4
5db9f1008891f4eafc1a7e94ce1d18"><code>3b1354a</code></a> chore(release):
5.0.1 (<a href="https://redirect.github.com/codecov/codecov-
action/issues/1656">sagemath#1656</a>)</li>
<li><a href="codecov/codecov-action@2e2a9c6d58
62d22e0f8cfb59d46bc47bf8eb1fe0"><code>2e2a9c6</code></a> fix: update
tokenless branch logic (<a
href="https://redirect.github.com/codecov/codecov-
action/issues/1650">sagemath#1650</a>)</li>
<li><a href="codecov/codecov-action@cfc521b7a1
dcdbcf0ecf149c162c19ff9bd9568c"><code>cfc521b</code></a> Update
README.md</li>
<li><a href="codecov/codecov-action@06425412c8
015bc1ab2385b41c7ea204f77b91bf"><code>0642541</code></a> fix: use
marketplace v5 badge (<a
href="https://redirect.github.com/codecov/codecov-
action/issues/1646">sagemath#1646</a>)</li>
<li><a href="codecov/codecov-action@968872560f
81e7bdde9272853e65f2507c0eca7c"><code>9688725</code></a> Update
README.md</li>
<li><a href="codecov/codecov-action@2112eaec1b
edbdabc7e93d5312449d0d62b07c60"><code>2112eae</code></a> chore(deps):
bump wrapper to 0.0.23 (<a
href="https://redirect.github.com/codecov/codecov-
action/issues/1644">sagemath#1644</a>)</li>
<li><a href="codecov/codecov-action@193421c5b3
d1aca4209c9754f224ca0d85729414"><code>193421c</code></a> fixL use the
correct source (<a href="https://redirect.github.com/codecov/codecov-
action/issues/1642">sagemath#1642</a>)</li>
<li><a href="codecov/codecov-action@6018df70b0
5b191502ce08196e76e30ea3578615"><code>6018df7</code></a> fix: update
container builds (<a href="https://redirect.github.com/codecov/codecov-
action/issues/1640">sagemath#1640</a>)</li>
<li><a href="codecov/codecov-action@eff1a643d6
887ee5935d4ca343e9076dc377d416"><code>eff1a64</code></a> fix: add
missing vars (<a href="https://redirect.github.com/codecov/codecov-
action/issues/1638">sagemath#1638</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/codecov/codecov-action/compare/v4...v5">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility score](https://dependabot-
badges.githubapp.com/badges/compatibility_score?dependency-
name=codecov/codecov-action&package-manager=github_actions&previous-
version=4&new-version=5)](https://docs.github.com/en/github/managing-
security-vulnerabilities/about-dependabot-security-updates#about-
compatibility-scores)

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-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will 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 version` will 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 dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>
    
URL: sagemath#38990
Reported by: dependabot[bot]
Reviewer(s): Kwankyu Lee
vbraun pushed a commit to vbraun/sage that referenced this issue Dec 13, 2024
    
Bumps [codecov/codecov-action](https://github.com/codecov/codecov-
action) from 4 to 5.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/codecov/codecov-
action/releases">codecov/codecov-action's releases</a>.</em></p>
<blockquote>
<h2>v5.0.0</h2>
<h2>v5 Release</h2>
<p><code>v5</code> of the Codecov GitHub Action will use the <a
href="https://github.com/codecov/wrapper">Codecov Wrapper</a> to
encapsulate the <a href="https://github.com/codecov/codecov-
cli">CLI</a>. This will help ensure that the Action gets updates
quicker.</p>
<h3>Migration Guide</h3>
<p>The <code>v5</code> release also coincides with the opt-out feature
for tokens for public repositories. In the <code>Global Upload
Token</code> section of the settings page of an organization in
codecov.io, you can set the ability for Codecov to receive a coverage
reports from any source. This will allow contributors or other members
of a repository to upload without needing access to the Codecov token.
For more details see <a href="https://docs.codecov.com/docs/codecov-
tokens#uploading-without-a-token">how to upload without a token</a>.</p>
<blockquote>
<p>[!WARNING]<br />
<strong>The following arguments have been changed</strong></p>
<ul>
<li><code>file</code> (this has been deprecated in favor of
<code>files</code>)</li>
<li><code>plugin</code> (this has been deprecated in favor of
<code>plugins</code>)</li>
</ul>
</blockquote>
<p>The following arguments have been added:</p>
<ul>
<li><code>binary</code></li>
<li><code>gcov_args</code></li>
<li><code>gcov_executable</code></li>
<li><code>gcov_ignore</code></li>
<li><code>gcov_include</code></li>
<li><code>report_type</code></li>
<li><code>skip_validation</code></li>
<li><code>swift_project</code></li>
</ul>
<p>You can see their usage in the <code>action.yml</code> <a
href="https://github.com/codecov/codecov-
action/blob/main/action.yml">file</a>.</p>
<h2>What's Changed</h2>
<ul>
<li>chore(deps): bump to eslint9+ and remove eslint-config-google by <a
href="https://github.com/thomasrockhu-codecov"><code>@​thomasrockhu-
codecov</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1591">codecov/codecov-action#1591</a></li>
<li>build(deps-dev): bump <code>@​octokit/webhooks-types</code> from
7.5.1 to 7.6.1 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1595">codecov/codecov-action#1595</a></li>
<li>build(deps-dev): bump typescript from 5.6.2 to 5.6.3 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1604">codecov/codecov-action#1604</a></li>
<li>build(deps-dev): bump <code>@​typescript-eslint/parser</code> from
8.8.0 to 8.8.1 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1601">codecov/codecov-action#1601</a></li>
<li>build(deps): bump <code>@​actions/core</code> from 1.11.0 to 1.11.1
by <a href="https://github.com/dependabot"><code>@​dependabot</code></a>
in <a href="https://redirect.github.com/codecov/codecov-
action/pull/1597">codecov/codecov-action#1597</a></li>
<li>build(deps): bump github/codeql-action from 3.26.9 to 3.26.11 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1596">codecov/codecov-action#1596</a></li>
<li>build(deps-dev): bump <code>@​typescript-eslint/eslint-plugin</code>
from 8.8.0 to 8.8.1 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1600">codecov/codecov-action#1600</a></li>
<li>build(deps-dev): bump eslint from 9.11.1 to 9.12.0 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1598">codecov/codecov-action#1598</a></li>
<li>build(deps): bump github/codeql-action from 3.26.11 to 3.26.12 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1609">codecov/codecov-action#1609</a></li>
<li>build(deps): bump actions/checkout from 4.2.0 to 4.2.1 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1608">codecov/codecov-action#1608</a></li>
<li>build(deps): bump actions/upload-artifact from 4.4.0 to 4.4.3 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1607">codecov/codecov-action#1607</a></li>
<li>build(deps-dev): bump <code>@​typescript-eslint/parser</code> from
8.8.1 to 8.9.0 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1612">codecov/codecov-action#1612</a></li>
<li>build(deps-dev): bump <code>@​typescript-eslint/eslint-plugin</code>
from 8.8.1 to 8.9.0 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1611">codecov/codecov-action#1611</a></li>
<li>build(deps-dev): bump <code>@​typescript-eslint/eslint-plugin</code>
from 8.9.0 to 8.10.0 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1615">codecov/codecov-action#1615</a></li>
<li>build(deps-dev): bump eslint from 9.12.0 to 9.13.0 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1618">codecov/codecov-action#1618</a></li>
<li>build(deps): bump github/codeql-action from 3.26.12 to 3.26.13 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1617">codecov/codecov-action#1617</a></li>
<li>build(deps-dev): bump <code>@​typescript-eslint/parser</code> from
8.9.0 to 8.10.0 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1614">codecov/codecov-action#1614</a></li>
<li>build(deps-dev): bump <code>@​typescript-eslint/eslint-plugin</code>
from 8.10.0 to 8.11.0 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1620">codecov/codecov-action#1620</a></li>
<li>build(deps-dev): bump <code>@​typescript-eslint/parser</code> from
8.10.0 to 8.11.0 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1619">codecov/codecov-action#1619</a></li>
<li>build(deps-dev): bump <code>@​types/jest</code> from 29.5.13 to
29.5.14 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1622">codecov/codecov-action#1622</a></li>
<li>build(deps): bump actions/checkout from 4.2.1 to 4.2.2 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1625">codecov/codecov-action#1625</a></li>
<li>build(deps): bump github/codeql-action from 3.26.13 to 3.27.0 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1624">codecov/codecov-action#1624</a></li>
<li>build(deps-dev): bump <code>@​typescript-eslint/eslint-plugin</code>
from 8.11.0 to 8.12.1 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1626">codecov/codecov-action#1626</a></li>
<li>build(deps-dev): bump <code>@​typescript-eslint/eslint-plugin</code>
from 8.12.1 to 8.12.2 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/codecov/codecov-
action/pull/1629">codecov/codecov-action#1629</a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/codecov/codecov-
action/blob/main/CHANGELOG.md">codecov/codecov-action's
changelog</a>.</em></p>
<blockquote>
<h2>4.0.0-beta.2</h2>
<h3>Fixes</h3>
<ul>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/1085">sagemath#1085</a> not adding -n if empty to do-upload
command</li>
</ul>
<h2>4.0.0-beta.1</h2>
<p><code>v4</code> represents a move from the <a
href="https://github.com/codecov/uploader">universal uploader</a> to the
<a href="https://github.com/codecov/codecov-cli">Codecov CLI</a>.
Although this will unlock new features for our users, the CLI is not yet
at feature parity with the universal uploader.</p>
<h3>Breaking Changes</h3>
<ul>
<li>No current support for <code>aarch64</code> and <code>alpine</code>
architectures.</li>
<li>Tokenless uploading is unsuported</li>
<li>Various arguments to the Action have been removed</li>
</ul>
<h2>3.1.4</h2>
<h3>Fixes</h3>
<ul>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/967">sagemath#967</a> Fix typo in README.md</li>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/971">sagemath#971</a> fix: add back in working dir</li>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/969">sagemath#969</a> fix: CLI option names for uploader</li>
</ul>
<h3>Dependencies</h3>
<ul>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/970">sagemath#970</a> build(deps-dev): bump
<code>@​types/node</code> from 18.15.12 to 18.16.3</li>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/979">sagemath#979</a> build(deps-dev): bump
<code>@​types/node</code> from 20.1.0 to 20.1.2</li>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/981">sagemath#981</a> build(deps-dev): bump
<code>@​types/node</code> from 20.1.2 to 20.1.4</li>
</ul>
<h2>3.1.3</h2>
<h3>Fixes</h3>
<ul>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/960">sagemath#960</a> fix: allow for aarch64 build</li>
</ul>
<h3>Dependencies</h3>
<ul>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/957">sagemath#957</a> build(deps-dev): bump jest-junit from 15.0.0
to 16.0.0</li>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/958">sagemath#958</a> build(deps): bump openpgp from 5.7.0 to
5.8.0</li>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/959">sagemath#959</a> build(deps-dev): bump
<code>@​types/node</code> from 18.15.10 to 18.15.12</li>
</ul>
<h2>3.1.2</h2>
<h3>Fixes</h3>
<ul>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/718">sagemath#718</a> Update README.md</li>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/851">sagemath#851</a> Remove unsupported path_to_write_report
argument</li>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/898">sagemath#898</a> codeql-analysis.yml</li>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/901">sagemath#901</a> Update README to contain correct information
- inputs and negate feature</li>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/955">sagemath#955</a> fix: add in all the extra arguments for
uploader</li>
</ul>
<h3>Dependencies</h3>
<ul>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/819">sagemath#819</a> build(deps): bump openpgp from 5.4.0 to
5.5.0</li>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/835">sagemath#835</a> build(deps): bump node-fetch from 3.2.4 to
3.2.10</li>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/840">sagemath#840</a> build(deps): bump ossf/scorecard-action from
1.1.1 to 2.0.4</li>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/841">sagemath#841</a> build(deps): bump
<code>@​actions/core</code> from 1.9.1 to 1.10.0</li>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/843">sagemath#843</a> build(deps): bump
<code>@​actions/github</code> from 5.0.3 to 5.1.1</li>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/869">sagemath#869</a> build(deps): bump node-fetch from 3.2.10 to
3.3.0</li>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/872">sagemath#872</a> build(deps-dev): bump jest-junit from 13.2.0
to 15.0.0</li>
<li><a href="https://redirect.github.com/codecov/codecov-
action/issues/879">sagemath#879</a> build(deps): bump decode-uri-component from
0.2.0 to 0.2.2</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="codecov/codecov-action@5c47607acb
93fed5485fdbf7232e8a31425f672a"><code>5c47607</code></a> fix: override
commit and pr values for PR cases (<a
href="https://redirect.github.com/codecov/codecov-
action/issues/1657">sagemath#1657</a>)</li>
<li><a href="codecov/codecov-action@3b1354a6c4
5db9f1008891f4eafc1a7e94ce1d18"><code>3b1354a</code></a> chore(release):
5.0.1 (<a href="https://redirect.github.com/codecov/codecov-
action/issues/1656">sagemath#1656</a>)</li>
<li><a href="codecov/codecov-action@2e2a9c6d58
62d22e0f8cfb59d46bc47bf8eb1fe0"><code>2e2a9c6</code></a> fix: update
tokenless branch logic (<a
href="https://redirect.github.com/codecov/codecov-
action/issues/1650">sagemath#1650</a>)</li>
<li><a href="codecov/codecov-action@cfc521b7a1
dcdbcf0ecf149c162c19ff9bd9568c"><code>cfc521b</code></a> Update
README.md</li>
<li><a href="codecov/codecov-action@06425412c8
015bc1ab2385b41c7ea204f77b91bf"><code>0642541</code></a> fix: use
marketplace v5 badge (<a
href="https://redirect.github.com/codecov/codecov-
action/issues/1646">sagemath#1646</a>)</li>
<li><a href="codecov/codecov-action@968872560f
81e7bdde9272853e65f2507c0eca7c"><code>9688725</code></a> Update
README.md</li>
<li><a href="codecov/codecov-action@2112eaec1b
edbdabc7e93d5312449d0d62b07c60"><code>2112eae</code></a> chore(deps):
bump wrapper to 0.0.23 (<a
href="https://redirect.github.com/codecov/codecov-
action/issues/1644">sagemath#1644</a>)</li>
<li><a href="codecov/codecov-action@193421c5b3
d1aca4209c9754f224ca0d85729414"><code>193421c</code></a> fixL use the
correct source (<a href="https://redirect.github.com/codecov/codecov-
action/issues/1642">sagemath#1642</a>)</li>
<li><a href="codecov/codecov-action@6018df70b0
5b191502ce08196e76e30ea3578615"><code>6018df7</code></a> fix: update
container builds (<a href="https://redirect.github.com/codecov/codecov-
action/issues/1640">sagemath#1640</a>)</li>
<li><a href="codecov/codecov-action@eff1a643d6
887ee5935d4ca343e9076dc377d416"><code>eff1a64</code></a> fix: add
missing vars (<a href="https://redirect.github.com/codecov/codecov-
action/issues/1638">sagemath#1638</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/codecov/codecov-action/compare/v4...v5">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility score](https://dependabot-
badges.githubapp.com/badges/compatibility_score?dependency-
name=codecov/codecov-action&package-manager=github_actions&previous-
version=4&new-version=5)](https://docs.github.com/en/github/managing-
security-vulnerabilities/about-dependabot-security-updates#about-
compatibility-scores)

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-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will 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 version` will 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 dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>
    
URL: sagemath#38990
Reported by: dependabot[bot]
Reviewer(s): Kwankyu Lee
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants