-
-
Notifications
You must be signed in to change notification settings - Fork 3
Comparing changes
Open a pull request
base repository: arduino/go-properties-orderedmap
base: v1.8.1
head repository: arduino/go-properties-orderedmap
compare: master
- 15 commits
- 5 files changed
- 2 contributors
Commits on Sep 3, 2024
-
Configure actions/upload-artifact action to upload required hidden files
A breaking change was made in the 3.2.1 release of the "actions/upload-artifact" action, without doing a major version bump as would be done in a responsibly maintained project. The action now defaults to not uploading "hidden" files. This project's "Check Go Dependencies" workflow uses the "Licensed" tool to check for incompatible dependency licenses. The dependencies license metadata cache used by Licensed is stored in a folder named `.licensed`. In order to facilitate updates, the workflow uploads the generated dependencies license metadata cache as a workflow artifact when the current cache is found to be outdated. The `.` at the start of the `.licensed` folder name causes it to now not be uploaded to the workflow artifact. In order to catch such problems, the workflow configures the "actions/upload-artifact" action to fail if no files were uploaded. So in addition to not uploading the artifact, the change in the "actions/upload-artifact" action's behavior also resulted in the workflow runs failing: Error: No files were found with the provided path: .licenses/. No artifacts will be uploaded. The problem is fixed by disabling the "actions/upload-artifact" action's new behavior via the `include-hidden-files` input. After this change, the workflow can once more upload the dependencies license metadata cache to a workflow artifact as needed.
Configuration menu - View commit details
-
Copy full SHA for 7515f2d - Browse repository at this point
Copy the full SHA 7515f2dView commit details
Commits on Sep 4, 2024
-
Merge pull request #43 from per1234/include-hidden-files
Configure actions/upload-artifact action to upload required hidden files
Configuration menu - View commit details
-
Copy full SHA for 04415ba - Browse repository at this point
Copy the full SHA 04415baView commit details
Commits on Oct 9, 2024
-
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]>
Configuration menu - View commit details
-
Copy full SHA for dab28eb - Browse repository at this point
Copy the full SHA dab28ebView commit details
Commits on Oct 20, 2024
-
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]>
Configuration menu - View commit details
-
Copy full SHA for 85a79ed - Browse repository at this point
Copy the full SHA 85a79edView commit details -
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]>
Configuration menu - View commit details
-
Copy full SHA for 053c17b - Browse repository at this point
Copy the full SHA 053c17bView commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for 382cd90 - Browse repository at this point
Copy the full SHA 382cd90View commit details -
Merge pull request #37 from arduino/dependabot/github_actions/actions…
…/upload-artifact-4 Bump actions/upload-artifact from 3 to 4
Configuration menu - View commit details
-
Copy full SHA for d55cecc - Browse repository at this point
Copy the full SHA d55ceccView commit details
Commits on Aug 6, 2025
-
Bump actions/download-artifact from 4 to 5
Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 4 to 5. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v5) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for dc7f6e1 - Browse repository at this point
Copy the full SHA dc7f6e1View commit details
Commits on Aug 11, 2025
-
Merge pull request #45 from arduino/dependabot/github_actions/actions…
…/download-artifact-5 Bump actions/download-artifact from 4 to 5
Configuration menu - View commit details
-
Copy full SHA for 5ca0d87 - Browse repository at this point
Copy the full SHA 5ca0d87View commit details
Commits on Aug 12, 2025
-
Bump actions/checkout from 4 to 5
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for e47ce8d - Browse repository at this point
Copy the full SHA e47ce8dView commit details
Commits on Aug 13, 2025
-
Merge pull request #46 from arduino/dependabot/github_actions/actions…
…/checkout-5 Bump actions/checkout from 4 to 5
Configuration menu - View commit details
-
Copy full SHA for 21b9760 - Browse repository at this point
Copy the full SHA 21b9760View commit details
Commits on Sep 4, 2025
-
Bump actions/setup-go from 5 to 6
Bumps [actions/setup-go](https://github.com/actions/setup-go) from 5 to 6. - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](actions/setup-go@v5...v6) --- updated-dependencies: - dependency-name: actions/setup-go dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for c99a3db - Browse repository at this point
Copy the full SHA c99a3dbView commit details -
Bump actions/setup-node from 4 to 5
Bumps [actions/setup-node](https://github.com/actions/setup-node) from 4 to 5. - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](actions/setup-node@v4...v5) --- updated-dependencies: - dependency-name: actions/setup-node dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 96e915c - Browse repository at this point
Copy the full SHA 96e915cView commit details -
Merge pull request #48 from arduino/dependabot/github_actions/actions…
…/setup-node-5 Bump actions/setup-node from 4 to 5
Configuration menu - View commit details
-
Copy full SHA for 77fe8d5 - Browse repository at this point
Copy the full SHA 77fe8d5View commit details -
Merge pull request #47 from arduino/dependabot/github_actions/actions…
…/setup-go-6 Bump actions/setup-go from 5 to 6
Configuration menu - View commit details
-
Copy full SHA for eae5264 - Browse repository at this point
Copy the full SHA eae5264View commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff v1.8.1...master