Skip to content

Bump github.com/argoproj/argo-workflows/v3 from 3.7.11 to 3.7.14 in /argo-workflow - #100

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/go_modules/argo-workflow/github.com/argoproj/argo-workflows/v3-3.7.14
Open

Bump github.com/argoproj/argo-workflows/v3 from 3.7.11 to 3.7.14 in /argo-workflow#100
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/go_modules/argo-workflow/github.com/argoproj/argo-workflows/v3-3.7.14

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Apr 23, 2026

Copy link
Copy Markdown
Contributor

Bumps github.com/argoproj/argo-workflows/v3 from 3.7.11 to 3.7.14.

Release notes

Sourced from github.com/argoproj/argo-workflows/v3's releases.

v3.7.14

Quick Start

What's New?

Find out on our blog and changelog.

Breaking Changes and Known Issues

Check the upgrading guide and search for existing issues on GitHub.

Installation

CLI

Mac / Linux

Available via curl

# Detect OS
ARGO_OS="darwin"
if [[ "$(uname -s)" != "Darwin" ]]; then
  ARGO_OS="linux"
fi
Download the binary
curl -sLO "https://github.com/argoproj/argo-workflows/releases/download/v3.7.14/argo-$ARGO_OS-amd64.gz"
Unzip
gunzip "argo-$ARGO_OS-amd64.gz"
Make binary executable
chmod +x "argo-$ARGO_OS-amd64"
Move binary to path
mv "./argo-$ARGO_OS-amd64" /usr/local/bin/argo
Test installation
argo version

Controller and Server

kubectl create namespace argo
kubectl apply -n argo -f https://github.com/argoproj/argo-workflows/releases/download/v3.7.14/install.yaml

v3.7.13

... (truncated)

Changelog

Sourced from github.com/argoproj/argo-workflows/v3's changelog.

v3.7.14 (2026-04-23)

Full Changelog: v3.7.13...v3.7.14

Selected Changes

  • ca37b537c chore(deps): update module github.com/jackc/pgx/v5 to v5.9.2 [security] (release-3.7) (#16026)
  • 251bb231d Merge commit from fork
  • d05b0d8da Merge commit from fork
  • 0b6da1f0e Merge commit from fork
  • cc220db1e fix: delete stale TaskGroup children on retry with parameter override. Fixes #15802 (cherry-pick #15827 for 3.7) (#16011)
  • c4def9d9a fix: prevent failed to get a template when using inline template. Fixes #15051 (cherry-pick #15574 for 3.7) (#16009)
  • 6e3df1f21 fix(controller): guard realtime workflow.duration against zero StartedAt (cherry-pick #15935 for 3.7) (#16004)
  • dd8224565 fix: 401s when accessing artifact directories with SSO enabled. Fixes #15800 (cherry-pick #15994 for 3.7) (#15997)
  • 9391a3eaf chore(deps): update module github.com/go-git/go-git/v5 to v5.18.0 [security] (release-3.7) (#15989)
  • 6b9d2779e chore(deps): update k8s.io/utils digest to 28399d8 (release-3.7) (#15979)
  • b2760b1c4 chore(deps): update module github.com/moby/spdystream to v0.5.1 [security] (release-3.7) (#15958)
  • bbc2cdf12 chore(deps): update k8s.io/gengo digest to 25e2208 (release-3.7) (#15978)
  • be2c067e9 chore(deps): update module github.com/jackc/pgx/v5 to v5.9.0 [security] (release-3.7) (#15946)
  • 4653cb0da chore(deps): update module go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp to v1.43.0 [security] (release-3.7) (#15889)
  • ce6a91d10 chore(deps): update minio-go to include non-DualStack region fix (#2205) (cherry-pick #15838 for 3.7) (#15929)
  • f035bf0a4 fix: changed log level (cherry-pick #15898 for 3.7) (#15927)
  • fbd203449 chore(deps): update module github.com/go-jose/go-jose/v3 to v3.0.5 [security] (release-3.7) (#15857)
  • 09a1a5457 chore(deps): update module github.com/go-jose/go-jose/v4 to v4.1.4 [security] (release-3.7) (#15882)
  • b31539beb chore(deps): update module go.opentelemetry.io/otel/sdk to v1.43.0 [security] (release-3.7) (#15890)
  • Alan Clucas
  • AsKc2000
  • Claude Opus 4.6
  • Isitha Subasinghe
  • Mason Malone
  • Ville Vesilehto
  • Yu-Hong Shen

v3.7.13 (2026-04-02)

Full Changelog: v3.7.12...v3.7.13

Selected Changes

  • 8204ae19a fix: tolerate expression template runtime failures when allowUnresolved is true. Fixes #15832, #15824 (cherry-pick #15839 for 3.7) (#15851)
  • e21bd1e59 fix: populate scope with empty values for outputs of skipped/omitted DAG ancestors (cherry-pick #15841 for 3.7) (#15848)
  • 013a2a7dd fix(ui): add tooltips to tab icons (cherry-pick #15840 for 3.7) (#15847)
  • 92efea2f9 chore(deps): update module github.com/go-git/go-git/v5 to v5.17.1 [security] (release-3.7) (#15830)
  • 0aabc74ad chore(deps): update module github.com/docker/cli to v29 [security] (release-3.7) (#15812)
  • f8f212033 fix: remove holder from waiting list when semaphore lock is acquired. (cherry-pick #15239 for 3.7) (#15822)

... (truncated)

Commits
  • ca37b53 chore(deps): update module github.com/jackc/pgx/v5 to v5.9.2 [security] (rele...
  • 251bb23 Merge commit from fork
  • d05b0d8 Merge commit from fork
  • 0b6da1f Merge commit from fork
  • cc220db fix: delete stale TaskGroup children on retry with parameter override. Fixes ...
  • c4def9d fix: prevent failed to get a template when using inline template. Fixes #15...
  • 6e3df1f fix(controller): guard realtime workflow.duration against zero StartedAt (che...
  • dd82245 fix: 401s when accessing artifact directories with SSO enabled. Fixes #15800 ...
  • 9391a3e chore(deps): update module github.com/go-git/go-git/v5 to v5.18.0 [security] ...
  • 6b9d277 chore(deps): update k8s.io/utils digest to 28399d8 (release-3.7) (#15979)
  • Additional commits viewable in compare view

Dependabot compatibility score

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 rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @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)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Bumps [github.com/argoproj/argo-workflows/v3](https://github.com/argoproj/argo-workflows) from 3.7.11 to 3.7.14.
- [Release notes](https://github.com/argoproj/argo-workflows/releases)
- [Changelog](https://github.com/argoproj/argo-workflows/blob/main/CHANGELOG.md)
- [Commits](argoproj/argo-workflows@v3.7.11...v3.7.14)

---
updated-dependencies:
- dependency-name: github.com/argoproj/argo-workflows/v3
  dependency-version: 3.7.14
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Apr 23, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file go Pull requests that update Go code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants