Skip to content

build(deps): bump dawidd6/action-download-artifact from 12 to 14#746

Merged
ErikBjare merged 1 commit intomasterfrom
dependabot/github_actions/dawidd6/action-download-artifact-14
Feb 2, 2026
Merged

build(deps): bump dawidd6/action-download-artifact from 12 to 14#746
ErikBjare merged 1 commit intomasterfrom
dependabot/github_actions/dawidd6/action-download-artifact-14

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 2, 2026

Bumps dawidd6/action-download-artifact from 12 to 14.

Release notes

Sourced from dawidd6/action-download-artifact's releases.

v14

What's Changed

Full Changelog: dawidd6/action-download-artifact@v13...v14

v13

What's Changed

New Contributors

Full Changelog: dawidd6/action-download-artifact@v12...v13

Commits

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 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)

Important

Bump dawidd6/action-download-artifact from version 12 to 14 in nodejs.yml for downloading aw-server-rust nightly builds.

  • Dependencies:
    • Bump dawidd6/action-download-artifact from version 12 to 14 in .github/workflows/nodejs.yml.
  • Workflow:
    • Update affects the Download aw-server-rust nightly step in the test job.

This description was created by Ellipsis for ef3dbb9. You can customize this summary. It will automatically update as commits are pushed.

Bumps [dawidd6/action-download-artifact](https://github.com/dawidd6/action-download-artifact) from 12 to 14.
- [Release notes](https://github.com/dawidd6/action-download-artifact/releases)
- [Commits](dawidd6/action-download-artifact@v12...v14)

---
updated-dependencies:
- dependency-name: dawidd6/action-download-artifact
  dependency-version: '14'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code labels Feb 2, 2026
Copy link
Contributor

@ellipsis-dev ellipsis-dev bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Important

Looks good to me! 👍

Reviewed everything up to ef3dbb9 in 8 seconds. Click for details.
  • Reviewed 13 lines of code in 1 files
  • Skipped 0 files when reviewing.
  • Skipped posting 0 draft comments. View those below.
  • Modify your settings and rules to customize what types of comments Ellipsis leaves. And don't forget to react with 👍 or 👎 to teach Ellipsis.

Workflow ID: wflow_7Sm8L4s3z0C3mSo3

You can customize Ellipsis by changing your verbosity settings, reacting with 👍 or 👎, replying to comments, or adding code review rules.

@greptile-apps
Copy link
Contributor

greptile-apps bot commented Feb 2, 2026

Greptile Overview

Greptile Summary

This PR updates the dawidd6/action-download-artifact GitHub Action from v12 to v14 in the CI workflow. The action is used to download nightly builds of aw-server-rust during testing.

Changes:

  • Updated action version from @v12 to @v14 in .github/workflows/nodejs.yml:108

What's included in v13-v14:

  • Major dependency updates: @actions/artifact (5.0.1→6.0.0), @actions/github (6.0.1→9.0.0), @actions/core (2.0.1→3.0.0)
  • Migration from CommonJS to ESM
  • Security update: fast-xml-parser (5.3.3→5.3.4)

The existing workflow configuration remains compatible with the new version. All parameters (repo, workflow, workflow_conclusion, branch, event, name, path, search_artifacts) are unchanged and supported.

Confidence Score: 5/5

  • Safe to merge - standard dependency update with full compatibility
  • This is a straightforward dependency version bump managed by Dependabot. The action's API remains compatible (all existing parameters are still supported), and the update includes security improvements and dependency updates. No breaking changes affect the workflow configuration.
  • No files require special attention

Important Files Changed

Filename Overview
.github/workflows/nodejs.yml Updated dawidd6/action-download-artifact from v12 to v14 for downloading nightly builds

Sequence Diagram

sequenceDiagram
    participant GHA as GitHub Actions
    participant Test as Test Job
    participant DL as dawidd6/action-download-artifact@v14
    participant Repo as ActivityWatch/aw-server-rust
    participant Server as aw-server-rust binary

    Note over Test: When aw-server=='aw-server-rust' && aw-version=='master'
    
    Test->>DL: Download artifact
    activate DL
    DL->>Repo: Query workflow runs (build.yml)
    Repo-->>DL: Return completed runs on master branch
    DL->>Repo: Download binaries-Linux artifact
    Repo-->>DL: Artifact contents
    DL->>Test: Extract to ./aw-server-rust/
    deactivate DL
    
    Test->>Server: chmod +x & start server
    activate Server
    Note over Server: Running in testing mode
    Test->>Server: Insert fake data via aw-client
    Test->>Server: Run npm tests
    Test->>Server: Run e2e tests
    deactivate Server
Loading

Copy link
Contributor

@greptile-apps greptile-apps bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

1 file reviewed, no comments

Edit Code Review Agent Settings | Greptile

@ErikBjare ErikBjare merged commit ef186cb into master Feb 2, 2026
8 checks passed
@dependabot dependabot bot deleted the dependabot/github_actions/dawidd6/action-download-artifact-14 branch February 2, 2026 12:43
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 github_actions Pull requests that update GitHub Actions code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant