-
Notifications
You must be signed in to change notification settings - Fork 22
Comparing changes
Open a pull request
base repository: jwlawson/actions-setup-cmake
base: v1.13.1
head repository: jwlawson/actions-setup-cmake
compare: master
- 13 commits
- 12 files changed
- 3 contributors
Commits on Dec 26, 2022
-
Bump minimatch from 3.0.4 to 3.1.2 (#54)
Bumps [minimatch](https://github.com/isaacs/minimatch) from 3.0.4 to 3.1.2. - [Release notes](https://github.com/isaacs/minimatch/releases) - [Changelog](https://github.com/isaacs/minimatch/blob/main/changelog.md) - [Commits](isaacs/minimatch@v3.0.4...v3.1.2) --- updated-dependencies: - dependency-name: minimatch dependency-type: indirect ... Signed-off-by: dependabot[bot] <[email protected]> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 318fb19 - Browse repository at this point
Copy the full SHA 318fb19View commit details
Commits on Jan 8, 2023
-
Bump json5 from 2.2.0 to 2.2.3 (#55)
Bumps [json5](https://github.com/json5/json5) from 2.2.0 to 2.2.3. - [Release notes](https://github.com/json5/json5/releases) - [Changelog](https://github.com/json5/json5/blob/main/CHANGELOG.md) - [Commits](json5/json5@v2.2.0...v2.2.3) --- updated-dependencies: - dependency-name: json5 dependency-type: indirect ... Signed-off-by: dependabot[bot] <[email protected]> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for a14d8d9 - Browse repository at this point
Copy the full SHA a14d8d9View commit details
Commits on Apr 20, 2023
-
Always use standard MacOS package to suppress warning (#56)
CMake 3.19 and above provide two Mac packages: cmake-3.19.4-macos-universal.dmg cmake-3.19.4-macos10.10-universal.dmg The 10.10 package uses OSX deployment target 10.10, while the standard package uses 10.13. As the oldest (and now deprecated) github runner is on 10.15 we can safely choose to use the standard package. https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners Keeping both packages available for selection causes a warning on all MacOS builds, so we can filter out the old packages to avoid this.
Configuration menu - View commit details
-
Copy full SHA for edf711e - Browse repository at this point
Copy the full SHA edf711eView commit details
Commits on Jul 11, 2023
-
Bump tough-cookie from 4.0.0 to 4.1.3 (#58)
Bumps [tough-cookie](https://github.com/salesforce/tough-cookie) from 4.0.0 to 4.1.3. - [Release notes](https://github.com/salesforce/tough-cookie/releases) - [Changelog](https://github.com/salesforce/tough-cookie/blob/master/CHANGELOG.md) - [Commits](salesforce/tough-cookie@v4.0.0...v4.1.3) --- updated-dependencies: - dependency-name: tough-cookie dependency-type: indirect ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for f11b69f - Browse repository at this point
Copy the full SHA f11b69fView commit details -
Bump semver from 7.3.5 to 7.5.2 (#59)
* Bump semver from 7.3.5 to 7.5.2 Bumps [semver](https://github.com/npm/node-semver) from 7.3.5 to 7.5.2. - [Release notes](https://github.com/npm/node-semver/releases) - [Changelog](https://github.com/npm/node-semver/blob/main/CHANGELOG.md) - [Commits](npm/node-semver@v7.3.5...v7.5.2) --- updated-dependencies: - dependency-name: semver dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> * Update compiled file --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: John Lawson <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 187efd9 - Browse repository at this point
Copy the full SHA 187efd9View commit details
Commits on Dec 1, 2023
-
Bump word-wrap from 1.2.3 to 1.2.4 (#60)
Bumps [word-wrap](https://github.com/jonschlinkert/word-wrap) from 1.2.3 to 1.2.4. - [Release notes](https://github.com/jonschlinkert/word-wrap/releases) - [Commits](jonschlinkert/word-wrap@1.2.3...1.2.4) --- updated-dependencies: - dependency-name: word-wrap dependency-type: indirect ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for aaba485 - Browse repository at this point
Copy the full SHA aaba485View commit details -
Bump @babel/traverse from 7.15.4 to 7.23.5 (#63)
Bumps [@babel/traverse](https://github.com/babel/babel/tree/HEAD/packages/babel-traverse) from 7.15.4 to 7.23.5. - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md) - [Commits](https://github.com/babel/babel/commits/v7.23.5/packages/babel-traverse) --- updated-dependencies: - dependency-name: "@babel/traverse" dependency-type: indirect ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 6f89ab7 - Browse repository at this point
Copy the full SHA 6f89ab7View commit details
Commits on Dec 2, 2023
-
Configuration menu - View commit details
-
Copy full SHA for d06b37b - Browse repository at this point
Copy the full SHA d06b37bView commit details
Commits on Feb 6, 2024
-
GitHub is no longer going to support running actions on Node 16 and requires upgrading to Node 20 (see blog). This PR addresses that with updates to: * action runtime * workflows * node types Tests passed when run locally. Closes #65. Add @types/node to devDependencies to ensure we get the proper version and bump @vercel/ncc to the latest, and update package-lock using `npm install` which also prepares the package.
Configuration menu - View commit details
-
Copy full SHA for 8974e9c - Browse repository at this point
Copy the full SHA 8974e9cView commit details
Commits on Feb 21, 2024
-
Bump undici from 5.28.2 to 5.28.3 (#67)
* Bump undici from 5.28.2 to 5.28.3 Bumps [undici](https://github.com/nodejs/undici) from 5.28.2 to 5.28.3. - [Release notes](https://github.com/nodejs/undici/releases) - [Commits](nodejs/undici@v5.28.2...v5.28.3) --- updated-dependencies: - dependency-name: undici dependency-type: indirect ... Signed-off-by: dependabot[bot] <[email protected]> * recompile * Try again --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: John Lawson <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 959f111 - Browse repository at this point
Copy the full SHA 959f111View commit details
Commits on Apr 9, 2024
-
Bump undici from 5.28.3 to 5.28.4 (#69)
* Bump undici from 5.28.3 to 5.28.4 Bumps [undici](https://github.com/nodejs/undici) from 5.28.3 to 5.28.4. - [Release notes](https://github.com/nodejs/undici/releases) - [Commits](nodejs/undici@v5.28.3...v5.28.4) --- updated-dependencies: - dependency-name: undici dependency-type: indirect ... Signed-off-by: dependabot[bot] <[email protected]> * Rebuild compiled file * Bump version --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: John Lawson <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 802fa1a - Browse repository at this point
Copy the full SHA 802fa1aView commit details
Commits on Jun 19, 2024
-
Bump braces from 3.0.2 to 3.0.3 (#71)
Bumps [braces](https://github.com/micromatch/braces) from 3.0.2 to 3.0.3. - [Changelog](https://github.com/micromatch/braces/blob/master/CHANGELOG.md) - [Commits](micromatch/braces@3.0.2...3.0.3) --- updated-dependencies: - dependency-name: braces dependency-type: indirect ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for e6b5411 - Browse repository at this point
Copy the full SHA e6b5411View commit details -
Bump ws from 7.5.9 to 7.5.10 (#72)
Bumps [ws](https://github.com/websockets/ws) from 7.5.9 to 7.5.10. - [Release notes](https://github.com/websockets/ws/releases) - [Commits](websockets/ws@7.5.9...7.5.10) --- updated-dependencies: - dependency-name: ws dependency-type: indirect ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 09fd9b0 - Browse repository at this point
Copy the full SHA 09fd9b0View commit details
There are no files selected for viewing
Large diffs are not rendered by default.