March 17, 2024
Generate JSON array
Version updated for yakubique/generate-array to version v1.2.
This action is used across all versions by ? repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes Full Changelog: https://github.com/yakubique/generate-array/compare/v1.1...v1.2
Generate Array Generate JSON array of length
Usage workflow
Usage - name: Generate Array id: list uses: yakubique/generate-array@v1.1 with: length: 10 startIndex: 1 template: "$item-{{index}}" # "["$item-1","$item-2","$item-3","$item-4","$item-5","$item-6","$item-7","$item-8","$item-9"]" Inputs INPUT TYPE REQUIRED DEFAULT DESCRIPTION length string true Array length negativeOnly string false "false" Return only negative values positiveOnly string false "false" Return only positive values startIndex string false "0" What should be first index (default: 0) template string false By default array values are indexes, can be customized with template.
March 17, 2024
Setup Forge
Version updated for frantjc/forge to version v0.14.0.
This action is used across all versions by 1 repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes Changelog 29553a60a55fb198848f53824947af48f5ab0951: Bump @typescript-eslint/parser from 7.0.1 to 7.0.2 in /.github/action (@dependabot[bot]) 6c156b4cf36f1b880fa9209108db1ebb45b11a02: Bump eslint from 8.56.0 to 8.57.0 in /.github/action (@dependabot[bot]) 5b59e77c228665cd7ab2145e0be2733ab69a9b6f: Bump yaml from 2.3.4 to 2.4.0 in /.github/action (@dependabot[bot]) d2f96d938c6c40db9095912447930aadf91f7f01: Bump @types/node from 20.11.19 to 20.11.20 in /.github/action (@dependabot[bot]) 87bef82aff628f813b2dc835f204534ffbf959a2: Bump go.
March 17, 2024
Unity - Builder
Version updated for game-ci/unity-builder to version v4.2.2.
This publisher is shown as ‘verified’ by GitHub. This action is used across all versions by 4,894 repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes What’s Changed Fix test workflows by @AndrewKahr in https://github.com/game-ci/unity-builder/pull/632 Add ’enableGpu’ param, allowing running Unity w/o -nographics by @codenamesimon in https://github.com/game-ci/unity-builder/pull/636 Use capture group to find Unity version to support new 6000 versions by @AndrewKahr in https://github.
March 17, 2024
update-generated-files-action
Version updated for int128/update-generated-files-action to version v2.50.0.
This action is used across all versions by 97 repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes What’s Changed Pin dependency @octokit/request-error to 5.0.1 by @renovate in https://github.com/int128/update-generated-files-action/pull/583 Update eslint to v7.1.1 by @renovate in https://github.com/int128/update-generated-files-action/pull/585 Update dependency typescript to v5.4.2 by @renovate in https://github.com/int128/update-generated-files-action/pull/587 Update dependency @types/node to v20.11.25 by @renovate in https://github.com/int128/update-generated-files-action/pull/586 Update eslint to v7.2.0 by @renovate in https://github.
March 17, 2024
npm-semver-publish
Version updated for iuccio/npm-semver-publish-action to version v1.6.0.
This action is used across all versions by 1 repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes Full Changelog: https://github.com/iuccio/npm-semver-publish-action/compare/v1.0.0...v1.6.0
March 17, 2024
Validate secrets and variables in env, repository, org for a github action
Version updated for math280h/validate-secrets-action to version v0.0.1.
This action is used across all versions by ? repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes What’s Changed Create LICENSE by @math280h in https://github.com/math280h/validate-secrets-action/pull/1 New Contributors @math280h made their first contribution in https://github.com/math280h/validate-secrets-action/pull/1 Full Changelog: https://github.com/math280h/validate-secrets-action/commits/v0.0.1
March 17, 2024
recommend-mobpro-action
Version updated for tnyo43/recommend-mobpro-action to version v0.0.1.
This action is used across all versions by 1 repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes Add a workflow that helps teams to have good communications
March 17, 2024
Generate App Build, App Inspect Check and Splunk App Utilities
Version updated for VatsalJagani/splunk-app-action to version v4.
This action is used across all versions by 16 repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes v4 Run the user-defined commands in the context of your App’s root directory instead of Repo’s root directory. Refer to Running User Defined Commands Before Generating the final App Build for more details.
to_make_permission_changes parameter’s default value has been changed to false.
March 17, 2024
Make JSON array flat
Version updated for yakubique/flat-json to version v1.
This action is used across all versions by ? repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes Full Changelog: https://github.com/yakubique/flat-json/commits/v1
Flat JSON Concat all arrays inside array and return
Usage workflow
Usage - name: Flat JSON id: list uses: yakubique/flat-json@v1 with: input: '[[1], [2,3], [4,5], [6]]' # result: "[1,2,3,4,5,6]" Inputs INPUT TYPE REQUIRED DEFAULT DESCRIPTION input string true Input JSON string or file from_file string false "false" Load JSON from file to_file string false "false" Save result to file Outputs OUTPUT TYPE DESCRIPTION result string Result list in JSON format (or file if to_file = true)