March 17, 2024
Maven License Info Action
Version updated for YunaBraska/maven-license-info-action to version 2.0.1-rc.2.
This action is used across all versions by 2 repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes Full Changelog: https://github.com/YunaBraska/maven-license-info-action/compare/2.0.1-rc.1...2.0.1-rc.2
March 17, 2024
Markdown dead link checker
Version updated for AlexanderDokuchaev/md-dead-link-check to version v0.6.
This action is used across all versions by 3 repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes 0.6 Github Action checks web link in changed files only for pull request events. Updated error messages. MIT license.
March 17, 2024
Specflow Trx to Html Report
Version updated for maxbahr/specflow-trx-to-html-action to version v1.0.7.
This action is used across all versions by ? repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes Email HTML template
March 17, 2024
LuaRocks tag release
Version updated for nvim-neorocks/luarocks-tag-release to version v5.11.2.
This action is used across all versions by 232 repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes 5.11.2 (2024-03-16) Bug Fixes parser: add missing after directory in the Neovim plugin dirs list (#392) (8d3d786)
March 17, 2024
Automated Version Bump
Version updated for phips28/gh-action-bump-version to version v11.0.4.
This action is used across all versions by 2,626 repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes Disable npm fund that screws up versioning in workspaces
March 17, 2024
GitHub App Token Generator for Actions
Version updated for sammcj/github-app-installation-token to version v2.9.0.
This action is used across all versions by 3 repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes 2.9.0 (2024-03-16) What’s Changed chore(deps): lock file maintenance by @renovate in https://github.com/sammcj/github-app-installation-token/pull/257 Full Changelog: https://github.com/sammcj/github-app-installation-token/compare/v2.8.0...v2.9.0
March 17, 2024
OutputHelp
Version updated for StartAutomating/HelpOut to version v0.5.3.
This action is used across all versions by 59 repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes HelpOut 0.5.3: Save-MarkdownHelp: Fix saving markdown with Windows paths ( #175 ) Thanks @ShaunLawrie !
Additional Changes in Changelog Like It? Star It. Love It? Support It.
March 17, 2024
Grab with limits
Version updated for yakubique/grab-limited 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/grab-limited/commits/v1
Grab with limits Grab URLs with timelimit
Usage workflow
Usage - name: Grab with limits id: list uses: yakubique/grab-limited@v1 with: name: test-* Inputs INPUT TYPE REQUIRED DEFAULT DESCRIPTION concurrency string false "1" Amount of requests at time endpoints string true Endpoints to call (JSON array or file) from_file string false "false" Load endpoints from JSON file headers string false "{}" JSON string with headers to include interval string true Interval between queries (ms) method string false "GET" HTTP call method retry string false "1" Amount of retries retry_pause string false "300" Pause between retries (ms) to_file string false "false" Save result to JSON file Outputs OUTPUT TYPE DESCRIPTION result string Result list in JSON format OR path to file
March 17, 2024
Upsert to PostgreSQL
Version updated for yakubique/upsert-postgresql 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/upsert-postgresql/compare/v1.1...v1.2
Upsert to PostgreSQL Upsert anything to PostgreSQL
Usage workflow
Insert or update provided JSON array (or file with JSON array) to database. Conflicts would be resolved by column_to_match
Usage - name: Upsert id: upsert uses: yakubique/upsert-postgresql@v1.2 with: input: | [{ "id": 1, "value": "c", "test": 1 }, { "id": 2, "value": "b", "test": 2 }] host: ${{ env.