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

Bump actions/upload-artifact from 3 to 4 #331

Merged
merged 4 commits into from
Oct 18, 2024

Commits on Oct 9, 2024

  1. Bump actions/upload-artifact from 3 to 4

    Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4.
    - [Release notes](https://github.com/actions/upload-artifact/releases)
    - [Commits](actions/upload-artifact@v3...v4)
    
    ---
    updated-dependencies:
    - dependency-name: actions/upload-artifact
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Oct 9, 2024
    Configuration menu
    Copy the full SHA
    ed83004 View commit details
    Browse the repository at this point in the history

Commits on Oct 18, 2024

  1. Bump actions/download-artifact from 3 to 4

    Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 3 to 4.
    - [Release notes](https://github.com/actions/download-artifact/releases)
    - [Commits](actions/download-artifact@v3...v4)
    
    ---
    updated-dependencies:
    - dependency-name: actions/download-artifact
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored and per1234 committed Oct 18, 2024
    Configuration menu
    Copy the full SHA
    579ac23 View commit details
    Browse the repository at this point in the history
  2. Bump geekyeggo/delete-artifact from 2 to 5

    Bumps [geekyeggo/delete-artifact](https://github.com/geekyeggo/delete-artifact) from 2 to 5.
    - [Release notes](https://github.com/geekyeggo/delete-artifact/releases)
    - [Changelog](https://github.com/GeekyEggo/delete-artifact/blob/main/CHANGELOG.md)
    - [Commits](GeekyEggo/delete-artifact@v2...v5)
    
    ---
    updated-dependencies:
    - dependency-name: geekyeggo/delete-artifact
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored and per1234 committed Oct 18, 2024
    Configuration menu
    Copy the full SHA
    1a77c3e View commit details
    Browse the repository at this point in the history
  3. Don't upload multiple times to same artifact in label sync workflow

    The "Sync Labels" GitHub Actions workflow is configured to allow the use of multiple shared label configuration files.
    This is done by using a job matrix in the GitHub Actions workflow to download each of the files from the source
    repository in a parallel GitHub Actions workflow job. A GitHub Actions workflow artifact was used to transfer the
    generated files between sequential jobs in the workflow. The "actions/upload-artifact" and "actions/download-artifact"
    actions are used for this purpose.
    
    Previously, a single artifact was used for the transfer of all the shared label configuration files, with each of the
    parallel jobs uploading its own generated files to that artifact. However, support for uploading multiple times to a
    single artifact was dropped in version 4.0.0 of the "actions/upload-artifact" action. So it is now necessary to use a
    dedicated artifact for each of the builds. These can be downloaded in aggregate by using the artifact name globbing and
    merging features which were introduced in version 4.1.0 of the "actions/download-artifact" action.
    per1234 committed Oct 18, 2024
    Configuration menu
    Copy the full SHA
    30c2f79 View commit details
    Browse the repository at this point in the history