├── CONTRIBUTING.md ├── test ├── go.mod ├── add.go ├── Makefile └── add_test.go ├── .github ├── dependabot.yml └── workflows │ ├── update-readme.yml │ ├── sync-release-version.yml │ ├── test.yml │ ├── codacy-analysis.yml │ └── codeql.yml ├── .gitignore ├── .all-contributorsrc ├── LICENSE ├── action.yml ├── README.md └── HISTORY.md /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/tj-actions/coverage-badge-go/test 2 | 3 | go 1.23 4 | -------------------------------------------------------------------------------- /test/add.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | func add(a int, b int) int { 4 | return a + b 5 | } 6 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | updates: 3 | - package-ecosystem: github-actions 4 | directory: "/" 5 | schedule: 6 | interval: daily 7 | open-pull-requests-limit: 10 8 | labels: 9 | - "merge when passing" 10 | -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- 1 | clean: ## Clean test artifacts 2 | @rm -f coverage.out 3 | 4 | .PHONY: test 5 | test: clean ## Test go modules 6 | @go test -v ./... -covermode=count -coverprofile=coverage.out 7 | @go tool cover -func=coverage.out -o=coverage.out 8 | -------------------------------------------------------------------------------- /test/add_test.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | import "testing" 4 | 5 | func TestAdd(t *testing.T) { 6 | t.Run("add", func(t *testing.T) { 7 | value := add(2, 2) 8 | 9 | if value != 4 { 10 | t.Errorf("expected: %d, got: %d", 4, value) 11 | } 12 | }) 13 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Crash log files 2 | crash.log 3 | 4 | # Pycharm 5 | .idea/ 6 | .DS_Store 7 | 8 | # Direnv 9 | .envrc 10 | 11 | # Binaries for programs and plugins 12 | *.exe 13 | *.exe~ 14 | *.dll 15 | *.so 16 | *.dylib 17 | 18 | # Test binary, built with `go test -c` 19 | *.test 20 | 21 | # Test output files 22 | test.json 23 | 24 | # Output of the go coverage tool, specifically when used with LiteIDE 25 | *.out 26 | 27 | # Dependency directories (remove the comment below to include it) 28 | vendor/ 29 | 30 | dist/ 31 | -------------------------------------------------------------------------------- /.all-contributorsrc: -------------------------------------------------------------------------------- 1 | { 2 | "files": [ 3 | "README.md" 4 | ], 5 | "imageSize": 100, 6 | "commit": false, 7 | "commitType": "docs", 8 | "commitConvention": "angular", 9 | "contributors": [ 10 | { 11 | "login": "mdonahue-godaddy", 12 | "name": "Michael Donahue", 13 | "avatar_url": "https://avatars.githubusercontent.com/u/81647737?v=4", 14 | "profile": "https://github.com/mdonahue-godaddy", 15 | "contributions": [ 16 | "bug", 17 | "code" 18 | ] 19 | } 20 | ], 21 | "contributorsPerLine": 7, 22 | "skipCi": true, 23 | "repoType": "github", 24 | "repoHost": "https://github.com", 25 | "projectName": "coverage-badge-go", 26 | "projectOwner": "tj-actions" 27 | } 28 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021, Tonye Jack 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | 23 | -------------------------------------------------------------------------------- /.github/workflows/update-readme.yml: -------------------------------------------------------------------------------- 1 | name: Format README.md 2 | 3 | on: 4 | push: 5 | branches: 6 | - main 7 | 8 | jobs: 9 | sync-assets: 10 | runs-on: ubuntu-latest 11 | steps: 12 | - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4 13 | with: 14 | fetch-depth: 0 15 | 16 | - name: Run auto-doc 17 | uses: tj-actions/auto-doc@v3 18 | with: 19 | use_code_blocks: true 20 | use_major_version: true 21 | 22 | - name: Run remark 23 | uses: tj-actions/remark@v3 24 | 25 | - name: Verify Changed files 26 | uses: tj-actions/verify-changed-files@v19 27 | id: verify_changed_files 28 | with: 29 | files: | 30 | README.md 31 | 32 | - name: README.md changed 33 | if: steps.verify_changed_files.outputs.files_changed == 'true' 34 | run: | 35 | echo "README.md has uncommitted changes" 36 | exit 1 37 | 38 | - name: Create Pull Request 39 | if: failure() 40 | uses: peter-evans/create-pull-request@v6 41 | with: 42 | base: "main" 43 | labels: "merge when passing" 44 | title: "Updated README.md" 45 | branch: "chore/update-readme" 46 | commit-message: "Updated README.md" 47 | body: "Updated README.md" 48 | token: ${{ secrets.PAT_TOKEN }} 49 | -------------------------------------------------------------------------------- /.github/workflows/sync-release-version.yml: -------------------------------------------------------------------------------- 1 | name: Update release version. 2 | on: 3 | release: 4 | types: [published] 5 | 6 | 7 | jobs: 8 | update-version: 9 | runs-on: ubuntu-latest 10 | steps: 11 | - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4 12 | with: 13 | fetch-depth: 0 14 | - name: Run release-tagger 15 | uses: tj-actions/release-tagger@v4 16 | - name: Sync release version. 17 | uses: tj-actions/sync-release-version@v13 18 | id: sync-release-version 19 | with: 20 | pattern: '${{ github.repository }}@' 21 | only_major: true 22 | paths: | 23 | README.md 24 | - name: Run git-cliff 25 | uses: tj-actions/git-cliff@v1 26 | - name: Create Pull Request 27 | uses: peter-evans/create-pull-request@v6.0.5 28 | with: 29 | base: "main" 30 | labels: "merge when passing" 31 | title: "Upgraded to ${{ steps.sync-release-version.outputs.new_version }}" 32 | branch: "upgrade-to-${{ steps.sync-release-version.outputs.new_version }}" 33 | commit-message: "Upgraded from ${{ steps.sync-release-version.outputs.old_version }} -> ${{ steps.sync-release-version.outputs.new_version }}" 34 | body: "View [CHANGES](https://github.com/${{ github.repository }}/compare/${{ steps.sync-release-version.outputs.old_version }}...${{ steps.sync-release-version.outputs.new_version }})" 35 | token: ${{ secrets.PAT_TOKEN }} 36 | -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- 1 | name: CI 2 | 3 | on: 4 | push: 5 | branches: 6 | - main 7 | pull_request: 8 | branches: 9 | - main 10 | 11 | jobs: 12 | test: 13 | runs-on: ${{ matrix.platform }} 14 | strategy: 15 | fail-fast: false 16 | matrix: 17 | platform: [ubuntu-latest, windows-latest, macos-latest] 18 | 19 | name: Test coverage-badge-go 20 | steps: 21 | - name: Checkout 22 | uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4 23 | with: 24 | fetch-depth: 0 25 | persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal access token. 26 | 27 | - name: golangci-lint 28 | uses: reviewdog/action-golangci-lint@v2 29 | with: 30 | workdir: test 31 | go_version_file: 'test/go.mod' 32 | 33 | - name: Setup go 34 | uses: actions/setup-go@v5 35 | with: 36 | go-version-file: 'test/go.mod' 37 | cache: false 38 | 39 | - name: Run Test 40 | run: 41 | make test 42 | working-directory: test 43 | 44 | - name: Run coverage-badge-go 45 | uses: ./ 46 | with: 47 | filename: test/coverage.out 48 | link: ${{ github.server_url }}/${{ github.repository }}/actions/workflows/test.yml 49 | 50 | - name: Verify Changed files 51 | uses: tj-actions/verify-changed-files@v19 52 | id: verify-changed-files 53 | with: 54 | files: README.md 55 | 56 | - name: README.md changed 57 | if: steps.verify-changed-files.outputs.files_changed == 'true' && github.event_name != 'pull_request' && runner.os == 'Linux' 58 | run: | 59 | echo "README.md has uncommited changes" 60 | exit 1 61 | 62 | - name: Create Pull Request 63 | if: failure() && github.event_name != 'pull_request' && runner.os == 'Linux' 64 | uses: peter-evans/create-pull-request@v6 65 | with: 66 | base: "main" 67 | title: "chore: updated coverage badge" 68 | branch: "chore/update-coverage" 69 | commit-message: "chore: updated coverage badge" 70 | body: "updated coverage badge" 71 | token: ${{ secrets.PAT_TOKEN }} 72 | -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- 1 | name: Go Coverage Badge 2 | description: Generate coverage badge for go projects 3 | author: tj-actions 4 | inputs: 5 | filename: 6 | description: 'File containing the tests output' 7 | required: true 8 | default: coverage.out 9 | color: 10 | description: 'Color of the badge - green/yellow/red' 11 | required: false 12 | green: 13 | description: 'At what percentage does the badge become green instead of yellow (default: 70)' 14 | required: false 15 | target: 16 | description: 'Target file (default "README.md")' 17 | required: false 18 | text: 19 | description: 'Text on the left side of the badge (default: "Coverage")' 20 | required: false 21 | value: 22 | description: 'Text on the right side of the badge' 23 | required: false 24 | yellow: 25 | description: 'At what percentage does the badge become yellow instead of red (default 30)' 26 | required: false 27 | link: 28 | description: 'Optional URL when you click the badge' 29 | required: false 30 | 31 | runs: 32 | using: 'composite' 33 | steps: 34 | - run: | 35 | EXTRA_ARGS="" 36 | 37 | if [[ -n '${{ inputs.color }}' ]]; then 38 | EXTRA_ARGS="${EXTRA_ARGS} -color=${{ inputs.color }}" 39 | fi 40 | 41 | if [[ -n '${{ inputs.green }}' ]]; then 42 | EXTRA_ARGS="${EXTRA_ARGS} -green=${{ inputs.green }}" 43 | fi 44 | 45 | if [[ -n '${{ inputs.target }}' ]]; then 46 | EXTRA_ARGS="${EXTRA_ARGS} -target=${{ inputs.target }}" 47 | fi 48 | 49 | if [[ -n '${{ inputs.text }}' ]]; then 50 | EXTRA_ARGS="${EXTRA_ARGS} -text=${{ inputs.text }}" 51 | fi 52 | 53 | if [[ -n '${{ inputs.value }}' ]]; then 54 | EXTRA_ARGS="${EXTRA_ARGS} -value=${{ inputs.value }}" 55 | fi 56 | 57 | if [[ -n '${{ inputs.yellow }}' ]]; then 58 | EXTRA_ARGS="${EXTRA_ARGS} -yellow=${{ inputs.yellow }}" 59 | fi 60 | 61 | if [[ -n '${{ inputs.link }}' ]]; then 62 | EXTRA_ARGS="${EXTRA_ARGS} -link=${{ inputs.link }}" 63 | fi 64 | 65 | go install github.com/AlexBeauchemin/gobadge@v0.4.0 66 | $(go env GOPATH)/bin/gobadge -filename=${{ inputs.filename }} $EXTRA_ARGS 67 | id: coverage-badge-go 68 | shell: bash 69 | 70 | branding: 71 | icon: check-circle 72 | color: white 73 | -------------------------------------------------------------------------------- /.github/workflows/codacy-analysis.yml: -------------------------------------------------------------------------------- 1 | # This workflow checks out code, performs a Codacy security scan 2 | # and integrates the results with the 3 | # GitHub Advanced Security code scanning feature. For more information on 4 | # the Codacy security scan action usage and parameters, see 5 | # https://github.com/codacy/codacy-analysis-cli-action. 6 | # For more information on Codacy Analysis CLI in general, see 7 | # https://github.com/codacy/codacy-analysis-cli. 8 | 9 | name: Codacy Security Scan 10 | 11 | on: 12 | push: 13 | branches: [ main ] 14 | pull_request: 15 | # The branches below must be a subset of the branches above 16 | branches: [ main ] 17 | schedule: 18 | - cron: '15 16 * * 2' 19 | 20 | jobs: 21 | codacy-security-scan: 22 | # Cancel other workflows that are running for the same branch 23 | # https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#concurrency 24 | concurrency: 25 | group: ${{ github.workflow }}-${{ github.ref }} 26 | cancel-in-progress: true 27 | name: Codacy Security Scan 28 | runs-on: ubuntu-latest 29 | steps: 30 | # Checkout the repository to the GitHub Actions runner 31 | - name: Checkout code 32 | uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4 33 | 34 | # Execute Codacy Analysis CLI and generate a SARIF output with the security issues identified during the analysis 35 | - name: Run Codacy Analysis CLI 36 | continue-on-error: true 37 | uses: codacy/codacy-analysis-cli-action@v4.4.0 38 | with: 39 | # Check https://github.com/codacy/codacy-analysis-cli#project-token to get your project token from your Codacy repository 40 | # You can also omit the token and run the tools that support default configurations 41 | project-token: ${{ secrets.CODACY_PROJECT_TOKEN }} 42 | verbose: true 43 | output: results.sarif 44 | format: sarif 45 | # Adjust severity of non-security issues 46 | gh-code-scanning-compat: true 47 | # Force 0 exit code to allow SARIF file generation 48 | # This will hand over control about PR rejection to the GitHub side 49 | max-allowed-issues: 2147483647 50 | 51 | # Upload the SARIF file generated in the previous step 52 | - name: Upload SARIF results file 53 | continue-on-error: true 54 | uses: github/codeql-action/upload-sarif@v3 55 | with: 56 | sarif_file: results.sarif 57 | -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- 1 | # For most projects, this workflow file will not need changing; you simply need 2 | # to commit it to your repository. 3 | # 4 | # You may wish to alter this file to override the set of languages analyzed, 5 | # or to provide custom queries or build logic. 6 | # 7 | # ******** NOTE ******** 8 | # We have attempted to detect the languages in your repository. Please check 9 | # the `language` matrix defined below to confirm you have the correct set of 10 | # supported CodeQL languages. 11 | # 12 | name: "CodeQL" 13 | 14 | on: 15 | push: 16 | branches: [ "main" ] 17 | pull_request: 18 | # The branches below must be a subset of the branches above 19 | branches: [ "main" ] 20 | schedule: 21 | - cron: '22 16 * * 2' 22 | 23 | jobs: 24 | analyze: 25 | name: Analyze 26 | runs-on: ubuntu-latest 27 | permissions: 28 | actions: read 29 | contents: read 30 | security-events: write 31 | 32 | strategy: 33 | fail-fast: false 34 | matrix: 35 | language: [ 'go' ] 36 | # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ] 37 | # Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support 38 | 39 | steps: 40 | - name: Checkout repository 41 | uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4 42 | 43 | # Initializes the CodeQL tools for scanning. 44 | - name: Initialize CodeQL 45 | uses: github/codeql-action/init@v3 46 | with: 47 | languages: ${{ matrix.language }} 48 | # If you wish to specify custom queries, you can do so here or in a config file. 49 | # By default, queries listed here will override any specified in a config file. 50 | # Prefix the list here with "+" to use these queries and those in the config file. 51 | 52 | # Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs 53 | # queries: security-extended,security-and-quality 54 | 55 | 56 | # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). 57 | # If this step fails, then you should remove it and run the build manually (see below) 58 | - name: Autobuild 59 | uses: github/codeql-action/autobuild@v3 60 | 61 | # ℹ️ Command-line programs to run using the OS shell. 62 | # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun 63 | 64 | # If the Autobuild fails above, remove it and uncomment the following three lines. 65 | # modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance. 66 | 67 | # - run: | 68 | # echo "Run, Build Application using script" 69 | # ./location_of_script_within_repo/buildscript.sh 70 | 71 | - name: Perform CodeQL Analysis 72 | uses: github/codeql-action/analyze@v3 73 | with: 74 | category: "/language:${{matrix.language}}" 75 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | [![Ubuntu](https://img.shields.io/badge/Ubuntu-E95420?style=for-the-badge\&logo=ubuntu\&logoColor=white)](https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idruns-on) 2 | [![Mac OS](https://img.shields.io/badge/mac%20os-000000?style=for-the-badge\&logo=macos\&logoColor=F0F0F0)](https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idruns-on) 3 | [![Windows](https://img.shields.io/badge/Windows-0078D6?style=for-the-badge\&logo=windows\&logoColor=white)](https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idruns-on) 4 | [![Public workflows that use this action.](https://img.shields.io/endpoint?style=for-the-badge\&url=https%3A%2F%2Fused-by.vercel.app%2Fapi%2Fgithub-actions%2Fused-by%3Faction%3Dtj-actions%2Fcoverage-badge-go%26badge%3Dtrue%26package_id%3DUGFja2FnZS0yOTQ5NTE3MzA0)](https://github.com/search?o=desc\&q=tj-actions+coverage-badge-go+path%3A.github%2Fworkflows+language%3AYAML\&s=\&type=Code) 5 | 6 | 7 | 8 | [![All Contributors](https://img.shields.io/badge/all_contributors-1-orange.svg?style=flat-square)](#contributors-) 9 | 10 | 11 | 12 | ## coverage-badge-go 13 | 14 | 15 | 16 | Generate a coverage badge like this one for your Golang projects without uploading results to a third party. 17 | 18 | 👇 19 | 20 | [![CI](https://github.com/tj-actions/coverage-badge-go/workflows/CI/badge.svg)](https://github.com/tj-actions/coverage-badge-go/actions?query=workflow%3ACI) 21 | [![Coverage](https://img.shields.io/badge/Coverage-100.0%25-brightgreen)](https://github.com/tj-actions/coverage-badge-go/actions/workflows/test.yml) 22 | [![Update release version.](https://github.com/tj-actions/coverage-badge-go/workflows/Update%20release%20version./badge.svg)](https://github.com/tj-actions/coverage-badge-go/actions?query=workflow%3A%22Update+release+version.%22) 23 | 24 | ## Usage 25 | 26 | ```yaml 27 | name: Generate code coverage badge 28 | 29 | on: 30 | pull_request: 31 | branches: 32 | - main 33 | 34 | jobs: 35 | test: 36 | runs-on: ubuntu-latest 37 | name: Update coverage badge 38 | steps: 39 | - name: Checkout 40 | uses: actions/checkout@v4 41 | with: 42 | persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal access token. 43 | fetch-depth: 0 # otherwise, there would be errors pushing refs to the destination repository. 44 | 45 | - name: Setup go 46 | uses: actions/setup-go@v4 47 | with: 48 | go-version-file: 'go.mod' 49 | 50 | - name: Run Test 51 | run: | 52 | go test -v ./... -covermode=count -coverprofile=coverage.out 53 | go tool cover -func=coverage.out -o=coverage.out 54 | 55 | - name: Go Coverage Badge # Pass the `coverage.out` output to this action 56 | uses: tj-actions/coverage-badge-go@v3 57 | with: 58 | filename: coverage.out 59 | 60 | - name: Verify Changed files 61 | uses: tj-actions/verify-changed-files@v16 62 | id: verify-changed-files 63 | with: 64 | files: README.md 65 | 66 | - name: Commit changes 67 | if: steps.verify-changed-files.outputs.files_changed == 'true' 68 | run: | 69 | git config --local user.email "action@github.com" 70 | git config --local user.name "GitHub Action" 71 | git add README.md 72 | git commit -m "chore: Updated coverage badge." 73 | 74 | - name: Push changes 75 | if: steps.verify-changed-files.outputs.files_changed == 'true' 76 | uses: ad-m/github-push-action@master 77 | with: 78 | github_token: ${{ github.token }} 79 | branch: ${{ github.head_ref }} 80 | ``` 81 | 82 | ## Signed commits 83 | 84 | In order to create signed commits see full guide [here](https://httgp.com/signing-commits-in-github-actions/) 85 | 86 | ## Inputs 87 | 88 | 89 | 90 | ```yaml 91 | - uses: tj-actions/coverage-badge-go@v3 92 | id: coverage-badge-go 93 | with: 94 | # Color of the badge - 95 | # green/yellow/red 96 | # Type: string 97 | color: '' 98 | 99 | # File containing the tests output 100 | # Type: string 101 | # Default: "coverage.out" 102 | filename: '' 103 | 104 | # At what percentage does the 105 | # badge become green instead of 106 | # yellow (default: 70) 107 | # Type: string 108 | green: '' 109 | 110 | # Optional URL when you click 111 | # the badge 112 | # Type: string 113 | link: '' 114 | 115 | # Target file (default "README.md") 116 | # Type: string 117 | target: '' 118 | 119 | # Text on the left side 120 | # of the badge (default: "Coverage") 121 | # Type: string 122 | text: '' 123 | 124 | # Text on the right side 125 | # of the badge 126 | # Type: string 127 | value: '' 128 | 129 | # At what percentage does the 130 | # badge become yellow instead of 131 | # red (default 30) 132 | # Type: string 133 | yellow: '' 134 | 135 | ``` 136 | 137 | 138 | 139 | * Free software: [MIT license](LICENSE) 140 | 141 | If you feel generous and want to show some extra appreciation: 142 | 143 | [![Buy me a coffee][buymeacoffee-shield]][buymeacoffee] 144 | 145 | [buymeacoffee]: https://www.buymeacoffee.com/jackton1 146 | 147 | [buymeacoffee-shield]: https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png 148 | 149 | ## Credits 150 | 151 | This package was created with [Cookiecutter](https://github.com/cookiecutter/cookiecutter) using [cookiecutter-action](https://github.com/tj-actions/cookiecutter-action) 152 | 153 | * [gobadge](https://github.com/AlexBeauchemin/gobadge) 154 | * [gobinaries](https://github.com/tj/gobinaries) 155 | 156 | ## Report Bugs 157 | 158 | Report bugs at https://github.com/tj-actions/coverage-badge-go/issues. 159 | 160 | If you are reporting a bug, please include: 161 | 162 | * Your operating system name and version. 163 | * Any details about your workflow that might be helpful in troubleshooting. 164 | * Detailed steps to reproduce the bug. 165 | 166 | ## Contributors ✨ 167 | 168 | Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)): 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 |
Michael Donahue
Michael Donahue

🐛 💻
183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome! 191 | -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | # [3.0.0](https://github.com/tj-actions/coverage-badge-go/compare/v2.4.2...v3.0.0) - (2025-03-23) 4 | 5 | ## 🚀 Features 6 | 7 | - Update install steps ([#233](https://github.com/tj-actions/coverage-badge-go/issues/233)) ([fce22f1](https://github.com/tj-actions/coverage-badge-go/commit/fce22f1ee0ddbae0ce3289c8405268b5ed0391c7)) - (Tonye Jack) 8 | 9 | ## 🐛 Bug Fixes 10 | 11 | - Disable test for macos due to install errors ([#231](https://github.com/tj-actions/coverage-badge-go/issues/231)) ([36b4fee](https://github.com/tj-actions/coverage-badge-go/commit/36b4feeb62ace0c35828ba103e59f5aec46116a4)) - (Tonye Jack) 12 | 13 | ## 📦 Bumps 14 | 15 | - Bump actions/checkout from 4.1.3 to 4.1.4 16 | 17 | Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.3 to 4.1.4. 18 | - [Release notes](https://github.com/actions/checkout/releases) 19 | - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) 20 | - [Commits](https://github.com/actions/checkout/compare/1d96c772d19495a3b5c517cd2bc0cb401ea0529f...0ad4b8fadaa221de15dcec353f45205ec38ea70b) 21 | 22 | --- 23 | updated-dependencies: 24 | - dependency-name: actions/checkout 25 | dependency-type: direct:production 26 | update-type: version-update:semver-patch 27 | ... 28 | 29 | Signed-off-by: dependabot[bot] ([c18a5c8](https://github.com/tj-actions/coverage-badge-go/commit/c18a5c868a6bae2b022fe39758842c45aec145c1)) - (dependabot[bot]) 30 | - Bump actions/checkout from 4.1.1 to 4.1.3 31 | 32 | Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.1 to 4.1.3. 33 | - [Release notes](https://github.com/actions/checkout/releases) 34 | - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) 35 | - [Commits](https://github.com/actions/checkout/compare/b4ffde65f46336ab88eb53be808477a3936bae11...1d96c772d19495a3b5c517cd2bc0cb401ea0529f) 36 | 37 | --- 38 | updated-dependencies: 39 | - dependency-name: actions/checkout 40 | dependency-type: direct:production 41 | update-type: version-update:semver-patch 42 | ... 43 | 44 | Signed-off-by: dependabot[bot] ([83c4e89](https://github.com/tj-actions/coverage-badge-go/commit/83c4e89652a71d6a0eb6598bb6e31fd0751f453c)) - (dependabot[bot]) 45 | - Bump actions/checkout from 4.1.1 to 4.1.2 46 | 47 | Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.1 to 4.1.2. 48 | - [Release notes](https://github.com/actions/checkout/releases) 49 | - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) 50 | - [Commits](https://github.com/actions/checkout/compare/b4ffde65f46336ab88eb53be808477a3936bae11...9bb56186c3b09b4f86b1c65136769dd318469633) 51 | 52 | --- 53 | updated-dependencies: 54 | - dependency-name: actions/checkout 55 | dependency-type: direct:production 56 | update-type: version-update:semver-patch 57 | ... 58 | 59 | Signed-off-by: dependabot[bot] ([bbdd811](https://github.com/tj-actions/coverage-badge-go/commit/bbdd8118f73777ff2527d1cfd0e4188570ae0d12)) - (dependabot[bot]) 60 | - Bump actions/checkout from 4.1.1 to 4.1.2 61 | 62 | Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.1 to 4.1.2. 63 | - [Release notes](https://github.com/actions/checkout/releases) 64 | - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) 65 | - [Commits](https://github.com/actions/checkout/compare/b4ffde65f46336ab88eb53be808477a3936bae11...9bb56186c3b09b4f86b1c65136769dd318469633) 66 | 67 | --- 68 | updated-dependencies: 69 | - dependency-name: actions/checkout 70 | dependency-type: direct:production 71 | update-type: version-update:semver-patch 72 | ... 73 | 74 | Signed-off-by: dependabot[bot] ([1d4e904](https://github.com/tj-actions/coverage-badge-go/commit/1d4e904927c6ef60ea59376ffe5ea0e6f2778f36)) - (dependabot[bot]) 75 | - Bump actions/checkout from 4.1.1 to 4.1.2 76 | 77 | Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.1 to 4.1.2. 78 | - [Release notes](https://github.com/actions/checkout/releases) 79 | - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) 80 | - [Commits](https://github.com/actions/checkout/compare/b4ffde65f46336ab88eb53be808477a3936bae11...9bb56186c3b09b4f86b1c65136769dd318469633) 81 | 82 | --- 83 | updated-dependencies: 84 | - dependency-name: actions/checkout 85 | dependency-type: direct:production 86 | update-type: version-update:semver-patch 87 | ... 88 | 89 | Signed-off-by: dependabot[bot] ([09aa677](https://github.com/tj-actions/coverage-badge-go/commit/09aa677d43310755ffe21129c7f1842386442041)) - (dependabot[bot]) 90 | - Bump actions/checkout from 4.1.1 to 4.1.2 91 | 92 | Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.1 to 4.1.2. 93 | - [Release notes](https://github.com/actions/checkout/releases) 94 | - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) 95 | - [Commits](https://github.com/actions/checkout/compare/b4ffde65f46336ab88eb53be808477a3936bae11...9bb56186c3b09b4f86b1c65136769dd318469633) 96 | 97 | --- 98 | updated-dependencies: 99 | - dependency-name: actions/checkout 100 | dependency-type: direct:production 101 | update-type: version-update:semver-patch 102 | ... 103 | 104 | Signed-off-by: dependabot[bot] ([d33d66d](https://github.com/tj-actions/coverage-badge-go/commit/d33d66d45ffbf6d692cf4b352fea027614721b68)) - (dependabot[bot]) 105 | - Bump actions/checkout from 4.1.1 to 4.1.2 106 | 107 | Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.1 to 4.1.2. 108 | - [Release notes](https://github.com/actions/checkout/releases) 109 | - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) 110 | - [Commits](https://github.com/actions/checkout/compare/b4ffde65f46336ab88eb53be808477a3936bae11...9bb56186c3b09b4f86b1c65136769dd318469633) 111 | 112 | --- 113 | updated-dependencies: 114 | - dependency-name: actions/checkout 115 | dependency-type: direct:production 116 | update-type: version-update:semver-patch 117 | ... 118 | 119 | Signed-off-by: dependabot[bot] ([7781741](https://github.com/tj-actions/coverage-badge-go/commit/778174190e6c16a50148a9a4208b2ffd0d612123)) - (dependabot[bot]) 120 | - Bump actions/checkout from 4.1.1 to 4.1.2 121 | 122 | Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.1 to 4.1.2. 123 | - [Release notes](https://github.com/actions/checkout/releases) 124 | - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) 125 | - [Commits](https://github.com/actions/checkout/compare/b4ffde65f46336ab88eb53be808477a3936bae11...9bb56186c3b09b4f86b1c65136769dd318469633) 126 | 127 | --- 128 | updated-dependencies: 129 | - dependency-name: actions/checkout 130 | dependency-type: direct:production 131 | update-type: version-update:semver-patch 132 | ... 133 | 134 | Signed-off-by: dependabot[bot] ([55be31b](https://github.com/tj-actions/coverage-badge-go/commit/55be31bd53018b1729ca54764bf8bd700a042663)) - (dependabot[bot]) 135 | - Bump tj-actions/verify-changed-files from 13.1 to 19 136 | 137 | Bumps [tj-actions/verify-changed-files](https://github.com/tj-actions/verify-changed-files) from 13.1 to 19. 138 | - [Release notes](https://github.com/tj-actions/verify-changed-files/releases) 139 | - [Changelog](https://github.com/tj-actions/verify-changed-files/blob/main/HISTORY.md) 140 | - [Commits](https://github.com/tj-actions/verify-changed-files/compare/v13.1...v19) 141 | 142 | --- 143 | updated-dependencies: 144 | - dependency-name: tj-actions/verify-changed-files 145 | dependency-type: direct:production 146 | update-type: version-update:semver-major 147 | ... 148 | 149 | Signed-off-by: dependabot[bot] ([ce78d9e](https://github.com/tj-actions/coverage-badge-go/commit/ce78d9edd693bcbb57755f86803b6359ca2dbcac)) - (dependabot[bot]) 150 | - Bump actions/checkout from 4.1.1 to 4.1.2 151 | 152 | Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.1 to 4.1.2. 153 | - [Release notes](https://github.com/actions/checkout/releases) 154 | - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) 155 | - [Commits](https://github.com/actions/checkout/compare/b4ffde65f46336ab88eb53be808477a3936bae11...9bb56186c3b09b4f86b1c65136769dd318469633) 156 | 157 | --- 158 | updated-dependencies: 159 | - dependency-name: actions/checkout 160 | dependency-type: direct:production 161 | update-type: version-update:semver-patch 162 | ... 163 | 164 | Signed-off-by: dependabot[bot] ([5e5296e](https://github.com/tj-actions/coverage-badge-go/commit/5e5296e4c452fa270869d9fd38f08256b4b0c7f4)) - (dependabot[bot]) 165 | - Bump actions/checkout from 4.1.1 to 4.1.2 166 | 167 | Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.1 to 4.1.2. 168 | - [Release notes](https://github.com/actions/checkout/releases) 169 | - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) 170 | - [Commits](https://github.com/actions/checkout/compare/b4ffde65f46336ab88eb53be808477a3936bae11...9bb56186c3b09b4f86b1c65136769dd318469633) 171 | 172 | --- 173 | updated-dependencies: 174 | - dependency-name: actions/checkout 175 | dependency-type: direct:production 176 | update-type: version-update:semver-patch 177 | ... 178 | 179 | Signed-off-by: dependabot[bot] ([58dca86](https://github.com/tj-actions/coverage-badge-go/commit/58dca862847b64bdbb1eb7b08ab6cbc8af3911ce)) - (dependabot[bot]) 180 | - Bump actions/checkout from 4.1.1 to 4.1.2 181 | 182 | Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.1 to 4.1.2. 183 | - [Release notes](https://github.com/actions/checkout/releases) 184 | - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) 185 | - [Commits](https://github.com/actions/checkout/compare/b4ffde65f46336ab88eb53be808477a3936bae11...9bb56186c3b09b4f86b1c65136769dd318469633) 186 | 187 | --- 188 | updated-dependencies: 189 | - dependency-name: actions/checkout 190 | dependency-type: direct:production 191 | update-type: version-update:semver-patch 192 | ... 193 | 194 | Signed-off-by: dependabot[bot] ([7a09e98](https://github.com/tj-actions/coverage-badge-go/commit/7a09e98d52e971e66158e2804403fc917b14a07d)) - (dependabot[bot]) 195 | - Bump actions/checkout from 4.1.1 to 4.1.2 196 | 197 | Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.1 to 4.1.2. 198 | - [Release notes](https://github.com/actions/checkout/releases) 199 | - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) 200 | - [Commits](https://github.com/actions/checkout/compare/b4ffde65f46336ab88eb53be808477a3936bae11...9bb56186c3b09b4f86b1c65136769dd318469633) 201 | 202 | --- 203 | updated-dependencies: 204 | - dependency-name: actions/checkout 205 | dependency-type: direct:production 206 | update-type: version-update:semver-patch 207 | ... 208 | 209 | Signed-off-by: dependabot[bot] ([f7a6664](https://github.com/tj-actions/coverage-badge-go/commit/f7a666490a6d28e34c52f65173b53c4c88eef0e3)) - (dependabot[bot]) 210 | - Bump actions/checkout from 4.1.1 to 4.1.2 211 | 212 | Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.1 to 4.1.2. 213 | - [Release notes](https://github.com/actions/checkout/releases) 214 | - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) 215 | - [Commits](https://github.com/actions/checkout/compare/b4ffde65f46336ab88eb53be808477a3936bae11...9bb56186c3b09b4f86b1c65136769dd318469633) 216 | 217 | --- 218 | updated-dependencies: 219 | - dependency-name: actions/checkout 220 | dependency-type: direct:production 221 | update-type: version-update:semver-patch 222 | ... 223 | 224 | Signed-off-by: dependabot[bot] ([c10ca3e](https://github.com/tj-actions/coverage-badge-go/commit/c10ca3e773ff4317bec1063ab79debc728b876b9)) - (dependabot[bot]) 225 | - Bump actions/checkout from 4.1.1 to 4.1.2 226 | 227 | Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.1 to 4.1.2. 228 | - [Release notes](https://github.com/actions/checkout/releases) 229 | - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) 230 | - [Commits](https://github.com/actions/checkout/compare/b4ffde65f46336ab88eb53be808477a3936bae11...9bb56186c3b09b4f86b1c65136769dd318469633) 231 | 232 | --- 233 | updated-dependencies: 234 | - dependency-name: actions/checkout 235 | dependency-type: direct:production 236 | update-type: version-update:semver-patch 237 | ... 238 | 239 | Signed-off-by: dependabot[bot] ([cead6f4](https://github.com/tj-actions/coverage-badge-go/commit/cead6f4bc1f1bfef07069ea149f09ddd63c5cb44)) - (dependabot[bot]) 240 | - Bump actions/checkout from 4.1.1 to 4.1.2 241 | 242 | Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.1 to 4.1.2. 243 | - [Release notes](https://github.com/actions/checkout/releases) 244 | - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) 245 | - [Commits](https://github.com/actions/checkout/compare/b4ffde65f46336ab88eb53be808477a3936bae11...9bb56186c3b09b4f86b1c65136769dd318469633) 246 | 247 | --- 248 | updated-dependencies: 249 | - dependency-name: actions/checkout 250 | dependency-type: direct:production 251 | update-type: version-update:semver-patch 252 | ... 253 | 254 | Signed-off-by: dependabot[bot] ([ecdb1ac](https://github.com/tj-actions/coverage-badge-go/commit/ecdb1ac2798f3a5bbd27aab6d3edd6dd50399a48)) - (dependabot[bot]) 255 | - Bump actions/checkout from 4.1.1 to 4.1.2 ([#180](https://github.com/tj-actions/coverage-badge-go/issues/180)) 256 | 257 | Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 258 | ([a39b0a0](https://github.com/tj-actions/coverage-badge-go/commit/a39b0a0e983e6c3e129733d21a8856eb92a88288)) - (dependabot[bot]) 259 | - Bump actions/checkout from 4.1.1 to 4.1.2 260 | 261 | Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.1 to 4.1.2. 262 | - [Release notes](https://github.com/actions/checkout/releases) 263 | - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) 264 | - [Commits](https://github.com/actions/checkout/compare/b4ffde65f46336ab88eb53be808477a3936bae11...9bb56186c3b09b4f86b1c65136769dd318469633) 265 | 266 | --- 267 | updated-dependencies: 268 | - dependency-name: actions/checkout 269 | dependency-type: direct:production 270 | update-type: version-update:semver-patch 271 | ... 272 | 273 | Signed-off-by: dependabot[bot] ([f06e305](https://github.com/tj-actions/coverage-badge-go/commit/f06e30561b6ef4ae14ef3dfbff617ea1c03f67d0)) - (dependabot[bot]) 274 | - Bump actions/checkout from 4.1.1 to 4.1.2 275 | 276 | Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.1 to 4.1.2. 277 | - [Release notes](https://github.com/actions/checkout/releases) 278 | - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) 279 | - [Commits](https://github.com/actions/checkout/compare/b4ffde65f46336ab88eb53be808477a3936bae11...9bb56186c3b09b4f86b1c65136769dd318469633) 280 | 281 | --- 282 | updated-dependencies: 283 | - dependency-name: actions/checkout 284 | dependency-type: direct:production 285 | update-type: version-update:semver-patch 286 | ... 287 | 288 | Signed-off-by: dependabot[bot] ([c938d06](https://github.com/tj-actions/coverage-badge-go/commit/c938d0694f64f0964adb06bd97e2fdb7e1cf4c93)) - (dependabot[bot]) 289 | - Bump actions/checkout from 4.1.1 to 4.1.2 290 | 291 | Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.1 to 4.1.2. 292 | - [Release notes](https://github.com/actions/checkout/releases) 293 | - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) 294 | - [Commits](https://github.com/actions/checkout/compare/b4ffde65f46336ab88eb53be808477a3936bae11...9bb56186c3b09b4f86b1c65136769dd318469633) 295 | 296 | --- 297 | updated-dependencies: 298 | - dependency-name: actions/checkout 299 | dependency-type: direct:production 300 | update-type: version-update:semver-patch 301 | ... 302 | 303 | Signed-off-by: dependabot[bot] ([04f8524](https://github.com/tj-actions/coverage-badge-go/commit/04f852444c6f013ceec15fcbfb92ee7d81a551f3)) - (dependabot[bot]) 304 | - Bump actions/checkout from 4.1.1 to 4.1.2 305 | 306 | Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.1 to 4.1.2. 307 | - [Release notes](https://github.com/actions/checkout/releases) 308 | - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) 309 | - [Commits](https://github.com/actions/checkout/compare/b4ffde65f46336ab88eb53be808477a3936bae11...9bb56186c3b09b4f86b1c65136769dd318469633) 310 | 311 | --- 312 | updated-dependencies: 313 | - dependency-name: actions/checkout 314 | dependency-type: direct:production 315 | update-type: version-update:semver-patch 316 | ... 317 | 318 | Signed-off-by: dependabot[bot] ([9577e3c](https://github.com/tj-actions/coverage-badge-go/commit/9577e3ca6533f6d0faaace67982876d16cfd4f60)) - (dependabot[bot]) 319 | - Bump actions/checkout from 4.1.1 to 4.1.2 320 | 321 | Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.1 to 4.1.2. 322 | - [Release notes](https://github.com/actions/checkout/releases) 323 | - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) 324 | - [Commits](https://github.com/actions/checkout/compare/b4ffde65f46336ab88eb53be808477a3936bae11...9bb56186c3b09b4f86b1c65136769dd318469633) 325 | 326 | --- 327 | updated-dependencies: 328 | - dependency-name: actions/checkout 329 | dependency-type: direct:production 330 | update-type: version-update:semver-patch 331 | ... 332 | 333 | Signed-off-by: dependabot[bot] ([c16be32](https://github.com/tj-actions/coverage-badge-go/commit/c16be329a85313df08d53c12626e0f499b225da7)) - (dependabot[bot]) 334 | - Bump actions/checkout from 4.1.1 to 4.1.2 335 | 336 | Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.1 to 4.1.2. 337 | - [Release notes](https://github.com/actions/checkout/releases) 338 | - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) 339 | - [Commits](https://github.com/actions/checkout/compare/b4ffde65f46336ab88eb53be808477a3936bae11...9bb56186c3b09b4f86b1c65136769dd318469633) 340 | 341 | --- 342 | updated-dependencies: 343 | - dependency-name: actions/checkout 344 | dependency-type: direct:production 345 | update-type: version-update:semver-patch 346 | ... 347 | 348 | Signed-off-by: dependabot[bot] ([3ef5d42](https://github.com/tj-actions/coverage-badge-go/commit/3ef5d4208cfc25ea13d475f79411b209f4eb362f)) - (dependabot[bot]) 349 | - Bump actions/checkout from 4.1.1 to 4.1.2 350 | 351 | Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.1 to 4.1.2. 352 | - [Release notes](https://github.com/actions/checkout/releases) 353 | - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) 354 | - [Commits](https://github.com/actions/checkout/compare/b4ffde65f46336ab88eb53be808477a3936bae11...9bb56186c3b09b4f86b1c65136769dd318469633) 355 | 356 | --- 357 | updated-dependencies: 358 | - dependency-name: actions/checkout 359 | dependency-type: direct:production 360 | update-type: version-update:semver-patch 361 | ... 362 | 363 | Signed-off-by: dependabot[bot] ([e14d604](https://github.com/tj-actions/coverage-badge-go/commit/e14d6044279b91c694446b7b35a7b9edfb88d431)) - (dependabot[bot]) 364 | - Bump actions/checkout from 4.1.1 to 4.1.2 365 | 366 | Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.1 to 4.1.2. 367 | - [Release notes](https://github.com/actions/checkout/releases) 368 | - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) 369 | - [Commits](https://github.com/actions/checkout/compare/b4ffde65f46336ab88eb53be808477a3936bae11...9bb56186c3b09b4f86b1c65136769dd318469633) 370 | 371 | --- 372 | updated-dependencies: 373 | - dependency-name: actions/checkout 374 | dependency-type: direct:production 375 | update-type: version-update:semver-patch 376 | ... 377 | 378 | Signed-off-by: dependabot[bot] ([abf7fb3](https://github.com/tj-actions/coverage-badge-go/commit/abf7fb36c88d8e348ae985a4650cae7a67cb3ddf)) - (dependabot[bot]) 379 | - Bump actions/checkout from 4.1.1 to 4.1.2 380 | 381 | Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.1 to 4.1.2. 382 | - [Release notes](https://github.com/actions/checkout/releases) 383 | - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) 384 | - [Commits](https://github.com/actions/checkout/compare/b4ffde65f46336ab88eb53be808477a3936bae11...9bb56186c3b09b4f86b1c65136769dd318469633) 385 | 386 | --- 387 | updated-dependencies: 388 | - dependency-name: actions/checkout 389 | dependency-type: direct:production 390 | update-type: version-update:semver-patch 391 | ... 392 | 393 | Signed-off-by: dependabot[bot] ([426236f](https://github.com/tj-actions/coverage-badge-go/commit/426236fdfa5dd6380bf9499b487cd8f70e9bc60d)) - (dependabot[bot]) 394 | - Bump actions/checkout from 4.1.1 to 4.1.2 395 | 396 | Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.1 to 4.1.2. 397 | - [Release notes](https://github.com/actions/checkout/releases) 398 | - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) 399 | - [Commits](https://github.com/actions/checkout/compare/b4ffde65f46336ab88eb53be808477a3936bae11...9bb56186c3b09b4f86b1c65136769dd318469633) 400 | 401 | --- 402 | updated-dependencies: 403 | - dependency-name: actions/checkout 404 | dependency-type: direct:production 405 | update-type: version-update:semver-patch 406 | ... 407 | 408 | Signed-off-by: dependabot[bot] ([bd62d20](https://github.com/tj-actions/coverage-badge-go/commit/bd62d209305098e372edb5ec478dd71da39ce2a8)) - (dependabot[bot]) 409 | - Bump actions/checkout from 4.1.1 to 4.1.2 410 | 411 | Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.1 to 4.1.2. 412 | - [Release notes](https://github.com/actions/checkout/releases) 413 | - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) 414 | - [Commits](https://github.com/actions/checkout/compare/b4ffde65f46336ab88eb53be808477a3936bae11...9bb56186c3b09b4f86b1c65136769dd318469633) 415 | 416 | --- 417 | updated-dependencies: 418 | - dependency-name: actions/checkout 419 | dependency-type: direct:production 420 | update-type: version-update:semver-patch 421 | ... 422 | 423 | Signed-off-by: dependabot[bot] ([20572bb](https://github.com/tj-actions/coverage-badge-go/commit/20572bbba0c4391121da10158687156e24c173a8)) - (dependabot[bot]) 424 | - Bump actions/checkout from 4.1.1 to 4.1.2 425 | 426 | Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.1 to 4.1.2. 427 | - [Release notes](https://github.com/actions/checkout/releases) 428 | - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) 429 | - [Commits](https://github.com/actions/checkout/compare/b4ffde65f46336ab88eb53be808477a3936bae11...9bb56186c3b09b4f86b1c65136769dd318469633) 430 | 431 | --- 432 | updated-dependencies: 433 | - dependency-name: actions/checkout 434 | dependency-type: direct:production 435 | update-type: version-update:semver-patch 436 | ... 437 | 438 | Signed-off-by: dependabot[bot] ([bdc5592](https://github.com/tj-actions/coverage-badge-go/commit/bdc559244aa1a163fc07e88ee02cb48db64ec1d2)) - (dependabot[bot]) 439 | - Bump actions/checkout from 4.1.1 to 4.1.2 440 | 441 | Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.1 to 4.1.2. 442 | - [Release notes](https://github.com/actions/checkout/releases) 443 | - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) 444 | - [Commits](https://github.com/actions/checkout/compare/b4ffde65f46336ab88eb53be808477a3936bae11...9bb56186c3b09b4f86b1c65136769dd318469633) 445 | 446 | --- 447 | updated-dependencies: 448 | - dependency-name: actions/checkout 449 | dependency-type: direct:production 450 | update-type: version-update:semver-patch 451 | ... 452 | 453 | Signed-off-by: dependabot[bot] ([e5a57cc](https://github.com/tj-actions/coverage-badge-go/commit/e5a57ccd16a92a9431e69f7a14b3d7bab4d11d99)) - (dependabot[bot]) 454 | - Bump actions/checkout from 4.1.1 to 4.1.2 455 | 456 | Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.1 to 4.1.2. 457 | - [Release notes](https://github.com/actions/checkout/releases) 458 | - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) 459 | - [Commits](https://github.com/actions/checkout/compare/b4ffde65f46336ab88eb53be808477a3936bae11...9bb56186c3b09b4f86b1c65136769dd318469633) 460 | 461 | --- 462 | updated-dependencies: 463 | - dependency-name: actions/checkout 464 | dependency-type: direct:production 465 | update-type: version-update:semver-patch 466 | ... 467 | 468 | Signed-off-by: dependabot[bot] ([fcd87c3](https://github.com/tj-actions/coverage-badge-go/commit/fcd87c34f1043e391831416e1ea7c1c06bd0d75b)) - (dependabot[bot]) 469 | - Bump actions/checkout from 4.1.1 to 4.1.2 470 | 471 | Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.1 to 4.1.2. 472 | - [Release notes](https://github.com/actions/checkout/releases) 473 | - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) 474 | - [Commits](https://github.com/actions/checkout/compare/b4ffde65f46336ab88eb53be808477a3936bae11...9bb56186c3b09b4f86b1c65136769dd318469633) 475 | 476 | --- 477 | updated-dependencies: 478 | - dependency-name: actions/checkout 479 | dependency-type: direct:production 480 | update-type: version-update:semver-patch 481 | ... 482 | 483 | Signed-off-by: dependabot[bot] ([b2f3e19](https://github.com/tj-actions/coverage-badge-go/commit/b2f3e19013df7770311382debaec7b992e767ea7)) - (dependabot[bot]) 484 | - Bump actions/checkout from 4.1.1 to 4.1.2 485 | 486 | Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.1 to 4.1.2. 487 | - [Release notes](https://github.com/actions/checkout/releases) 488 | - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) 489 | - [Commits](https://github.com/actions/checkout/compare/b4ffde65f46336ab88eb53be808477a3936bae11...9bb56186c3b09b4f86b1c65136769dd318469633) 490 | 491 | --- 492 | updated-dependencies: 493 | - dependency-name: actions/checkout 494 | dependency-type: direct:production 495 | update-type: version-update:semver-patch 496 | ... 497 | 498 | Signed-off-by: dependabot[bot] ([67c40e4](https://github.com/tj-actions/coverage-badge-go/commit/67c40e4168879cbcf382bb0e2b49fcc2389b1808)) - (dependabot[bot]) 499 | 500 | ## ➖ Remove 501 | 502 | - Deleted renovate.json ([abcc96b](https://github.com/tj-actions/coverage-badge-go/commit/abcc96bba89fabca71ca6eab3796bd31a7054749)) - (Tonye Jack) 503 | 504 | ## 🔄 Update 505 | 506 | - Updated README.md ([#232](https://github.com/tj-actions/coverage-badge-go/issues/232)) 507 | 508 | * Updated README.md 509 | 510 | * Update test.yml ([481919e](https://github.com/tj-actions/coverage-badge-go/commit/481919ec72da287775fef015fd9011dc75a5db05)) - (Tonye Jack) 511 | 512 | ## 📝 Other 513 | 514 | - PR [#218](https://github.com/tj-actions/coverage-badge-go/pull/218): update actions/checkout digest to 0ad4b8f ([c944633](https://github.com/tj-actions/coverage-badge-go/commit/c94463312a72f7af4f470d178a5501def34dd55c)) - (repo-ranger[bot]) 515 | - PR [#217](https://github.com/tj-actions/coverage-badge-go/pull/217): update peter-evans/create-pull-request action to v6.0.5 ([4b89c7b](https://github.com/tj-actions/coverage-badge-go/commit/4b89c7baaf7beb4d2cc4b7a9ac59d22d0d5fc4c1)) - (repo-ranger[bot]) 516 | - PR [#216](https://github.com/tj-actions/coverage-badge-go/pull/216): update actions/checkout digest to 1d96c77 ([5b7c8a3](https://github.com/tj-actions/coverage-badge-go/commit/5b7c8a3c0a49f76a16d22357afa85c37f080890b)) - (repo-ranger[bot]) 517 | - PR [#215](https://github.com/tj-actions/coverage-badge-go/pull/215): actions/checkout from 4.1.3 to 4.1.4 ([a15ece8](https://github.com/tj-actions/coverage-badge-go/commit/a15ece869d9a6d6e528bf80620d68a613c3db50a)) - (repo-ranger[bot]) 518 | - PR [#214](https://github.com/tj-actions/coverage-badge-go/pull/214): update actions/checkout digest to 1d96c77 ([f2d9cdf](https://github.com/tj-actions/coverage-badge-go/commit/f2d9cdfb37075f110b7fa166587ccf97e1d58d34)) - (repo-ranger[bot]) 519 | - PR [#213](https://github.com/tj-actions/coverage-badge-go/pull/213): update actions/checkout digest to b4ffde6 ([17f6558](https://github.com/tj-actions/coverage-badge-go/commit/17f6558da7d1489e7f1d6cc14b10289d9ea44271)) - (repo-ranger[bot]) 520 | - PR [#212](https://github.com/tj-actions/coverage-badge-go/pull/212): actions/checkout from 4.1.1 to 4.1.3 ([0c5be9c](https://github.com/tj-actions/coverage-badge-go/commit/0c5be9c4a12d246cd8904bfb88d6ae54e91018f1)) - (repo-ranger[bot]) 521 | - PR [#211](https://github.com/tj-actions/coverage-badge-go/pull/211): update actions/checkout digest to b4ffde6 ([da1a1ef](https://github.com/tj-actions/coverage-badge-go/commit/da1a1ef0038c2aec55be5ebc19507d248d571bcb)) - (repo-ranger[bot]) 522 | - PR [#210](https://github.com/tj-actions/coverage-badge-go/pull/210): actions/checkout from 4.1.1 to 4.1.2 ([cab07dc](https://github.com/tj-actions/coverage-badge-go/commit/cab07dc18ce6d519d1f475769f7f8372bedcbf80)) - (repo-ranger[bot]) 523 | - PR [#209](https://github.com/tj-actions/coverage-badge-go/pull/209): update actions/checkout digest to b4ffde6 ([090e2fd](https://github.com/tj-actions/coverage-badge-go/commit/090e2fdbeb57fd962e82cb3babfdb5ca500c4584)) - (repo-ranger[bot]) 524 | - PR [#208](https://github.com/tj-actions/coverage-badge-go/pull/208): actions/checkout from 4.1.1 to 4.1.2 ([850fb2a](https://github.com/tj-actions/coverage-badge-go/commit/850fb2a3044a1abf0136a40780b31aad894854ec)) - (repo-ranger[bot]) 525 | - PR [#207](https://github.com/tj-actions/coverage-badge-go/pull/207): update peter-evans/create-pull-request action to v6.0.4 ([92dd729](https://github.com/tj-actions/coverage-badge-go/commit/92dd729c633a6cb1cb10324a13cd3a36c6ce51a7)) - (repo-ranger[bot]) 526 | - PR [#206](https://github.com/tj-actions/coverage-badge-go/pull/206): update actions/checkout digest to b4ffde6 ([75415a6](https://github.com/tj-actions/coverage-badge-go/commit/75415a62fd03d15ed3f6a8e05d320c33abbdec66)) - (repo-ranger[bot]) 527 | - PR [#205](https://github.com/tj-actions/coverage-badge-go/pull/205): actions/checkout from 4.1.1 to 4.1.2 ([2dff763](https://github.com/tj-actions/coverage-badge-go/commit/2dff763775ee9ff92db169b3a9a676b5a88c9a55)) - (repo-ranger[bot]) 528 | - PR [#204](https://github.com/tj-actions/coverage-badge-go/pull/204): update actions/checkout digest to b4ffde6 ([8bb87fb](https://github.com/tj-actions/coverage-badge-go/commit/8bb87fbe0a5d552836e9211e4f24c615f4ca1e00)) - (repo-ranger[bot]) 529 | - PR [#203](https://github.com/tj-actions/coverage-badge-go/pull/203): actions/checkout from 4.1.1 to 4.1.2 ([44b6d70](https://github.com/tj-actions/coverage-badge-go/commit/44b6d703be77192e9aefb385f9cd55d84e275208)) - (repo-ranger[bot]) 530 | - PR [#202](https://github.com/tj-actions/coverage-badge-go/pull/202): update actions/checkout digest to b4ffde6 ([67b121f](https://github.com/tj-actions/coverage-badge-go/commit/67b121f891f7f416e47cd849e42b1c6f32788eab)) - (repo-ranger[bot]) 531 | - PR [#201](https://github.com/tj-actions/coverage-badge-go/pull/201): actions/checkout from 4.1.1 to 4.1.2 ([dbf4aae](https://github.com/tj-actions/coverage-badge-go/commit/dbf4aae121b430e021ad36de583081d5e233da1a)) - (repo-ranger[bot]) 532 | - PR [#200](https://github.com/tj-actions/coverage-badge-go/pull/200): update actions/checkout digest to b4ffde6 ([a9f12c5](https://github.com/tj-actions/coverage-badge-go/commit/a9f12c57c3c404f80119ce48c518e98371f77671)) - (repo-ranger[bot]) 533 | - PR [#199](https://github.com/tj-actions/coverage-badge-go/pull/199): actions/checkout from 4.1.1 to 4.1.2 ([d2edfa0](https://github.com/tj-actions/coverage-badge-go/commit/d2edfa019d946164406f61ff6159934f30c58129)) - (repo-ranger[bot]) 534 | - PR [#198](https://github.com/tj-actions/coverage-badge-go/pull/198): update peter-evans/create-pull-request action to v6.0.3 ([5b55467](https://github.com/tj-actions/coverage-badge-go/commit/5b55467bdebe56c2a2d2b4137b15070016b121cf)) - (repo-ranger[bot]) 535 | - PR [#194](https://github.com/tj-actions/coverage-badge-go/pull/194): tj-actions/verify-changed-files from 13.1 to 19 ([593b178](https://github.com/tj-actions/coverage-badge-go/commit/593b178a7aac23b857b88305b0d151128ff671d5)) - (repo-ranger[bot]) 536 | - PR [#196](https://github.com/tj-actions/coverage-badge-go/pull/196): update actions/checkout digest to b4ffde6 ([7981d9f](https://github.com/tj-actions/coverage-badge-go/commit/7981d9fd7b88920cb548f63e4f3b668c0270a065)) - (repo-ranger[bot]) 537 | - PR [#195](https://github.com/tj-actions/coverage-badge-go/pull/195): actions/checkout from 4.1.1 to 4.1.2 ([55c3bc5](https://github.com/tj-actions/coverage-badge-go/commit/55c3bc54520525869196ca0d0bfeeeb1529613ee)) - (repo-ranger[bot]) 538 | - PR [#193](https://github.com/tj-actions/coverage-badge-go/pull/193): update actions/checkout digest to b4ffde6 ([a735e9b](https://github.com/tj-actions/coverage-badge-go/commit/a735e9bac2382ade2d0a48c95204b9d09b7e0fe7)) - (repo-ranger[bot]) 539 | - PR [#192](https://github.com/tj-actions/coverage-badge-go/pull/192): actions/checkout from 4.1.1 to 4.1.2 ([5eeecb0](https://github.com/tj-actions/coverage-badge-go/commit/5eeecb07da78554554a4ea64628f8c626e6942cc)) - (repo-ranger[bot]) 540 | - PR [#191](https://github.com/tj-actions/coverage-badge-go/pull/191): update actions/checkout digest to b4ffde6 ([d65012f](https://github.com/tj-actions/coverage-badge-go/commit/d65012fc4cc4c979320f8fd23579d29abfa91ac5)) - (repo-ranger[bot]) 541 | - PR [#190](https://github.com/tj-actions/coverage-badge-go/pull/190): actions/checkout from 4.1.1 to 4.1.2 ([63d9dd3](https://github.com/tj-actions/coverage-badge-go/commit/63d9dd34d6f808c20c7a2a549aadb462e3b30fee)) - (repo-ranger[bot]) 542 | - PR [#189](https://github.com/tj-actions/coverage-badge-go/pull/189): update actions/checkout digest to b4ffde6 ([0c35a93](https://github.com/tj-actions/coverage-badge-go/commit/0c35a93f3ddb0a698a4909e0e34636aa09aa720c)) - (repo-ranger[bot]) 543 | - PR [#188](https://github.com/tj-actions/coverage-badge-go/pull/188): actions/checkout from 4.1.1 to 4.1.2 ([190dcae](https://github.com/tj-actions/coverage-badge-go/commit/190dcae3262fe5e10142cfb2d69bd902a7b3c857)) - (repo-ranger[bot]) 544 | - PR [#187](https://github.com/tj-actions/coverage-badge-go/pull/187): update actions/checkout digest to b4ffde6 ([f17dd80](https://github.com/tj-actions/coverage-badge-go/commit/f17dd804721a553230d15994266b9627b36e0f43)) - (repo-ranger[bot]) 545 | - PR [#186](https://github.com/tj-actions/coverage-badge-go/pull/186): actions/checkout from 4.1.1 to 4.1.2 ([cf98cce](https://github.com/tj-actions/coverage-badge-go/commit/cf98cced5d873cb94ecf2cf7a488a7a29ccdc280)) - (repo-ranger[bot]) 546 | - PR [#185](https://github.com/tj-actions/coverage-badge-go/pull/185): update actions/checkout digest to b4ffde6 ([5fc13b5](https://github.com/tj-actions/coverage-badge-go/commit/5fc13b52e1de997528940f8c0f66b202ce7a53ce)) - (repo-ranger[bot]) 547 | - PR [#184](https://github.com/tj-actions/coverage-badge-go/pull/184): actions/checkout from 4.1.1 to 4.1.2 ([87d358c](https://github.com/tj-actions/coverage-badge-go/commit/87d358c239ceb0a96919b40e0ba0358d1714439d)) - (repo-ranger[bot]) 548 | - PR [#183](https://github.com/tj-actions/coverage-badge-go/pull/183): update actions/checkout digest to b4ffde6 ([c48e663](https://github.com/tj-actions/coverage-badge-go/commit/c48e663de80a1ea906de5c87bf47acb3c1ad4cbc)) - (repo-ranger[bot]) 549 | - PR [#182](https://github.com/tj-actions/coverage-badge-go/pull/182): actions/checkout from 4.1.1 to 4.1.2 ([8425eab](https://github.com/tj-actions/coverage-badge-go/commit/8425eab08b30c4d183cb8e2878ba4013f6f1b0b1)) - (repo-ranger[bot]) 550 | - PR [#181](https://github.com/tj-actions/coverage-badge-go/pull/181): update actions/checkout digest to b4ffde6 ([fc4630a](https://github.com/tj-actions/coverage-badge-go/commit/fc4630af42a833630927b6a2306174fb3d701e66)) - (repo-ranger[bot]) 551 | - PR [#179](https://github.com/tj-actions/coverage-badge-go/pull/179): update actions/checkout digest to b4ffde6 ([ac10f67](https://github.com/tj-actions/coverage-badge-go/commit/ac10f678ad261ce3871b1db0ced8e34117c1afb4)) - (repo-ranger[bot]) 552 | - PR [#178](https://github.com/tj-actions/coverage-badge-go/pull/178): actions/checkout from 4.1.1 to 4.1.2 ([b9c8f4a](https://github.com/tj-actions/coverage-badge-go/commit/b9c8f4a927e3aceb3025422752f5f9804d0ab10c)) - (repo-ranger[bot]) 553 | - PR [#177](https://github.com/tj-actions/coverage-badge-go/pull/177): update actions/checkout digest to b4ffde6 ([8f51e53](https://github.com/tj-actions/coverage-badge-go/commit/8f51e531c2aa062a487027abb4806b05c9046e93)) - (repo-ranger[bot]) 554 | - PR [#176](https://github.com/tj-actions/coverage-badge-go/pull/176): actions/checkout from 4.1.1 to 4.1.2 ([bd35125](https://github.com/tj-actions/coverage-badge-go/commit/bd3512547c658fc5eecbaf044408d00a1b82d71e)) - (repo-ranger[bot]) 555 | - PR [#175](https://github.com/tj-actions/coverage-badge-go/pull/175): update actions/checkout digest to b4ffde6 ([d7c0abe](https://github.com/tj-actions/coverage-badge-go/commit/d7c0abebb416dde2cda7230a0d04f4f0c5c6928e)) - (repo-ranger[bot]) 556 | - PR [#174](https://github.com/tj-actions/coverage-badge-go/pull/174): actions/checkout from 4.1.1 to 4.1.2 ([5ccee46](https://github.com/tj-actions/coverage-badge-go/commit/5ccee460d13e784288f096056e5e6b6e0204dde1)) - (repo-ranger[bot]) 557 | - PR [#173](https://github.com/tj-actions/coverage-badge-go/pull/173): update actions/checkout digest to b4ffde6 ([6775e28](https://github.com/tj-actions/coverage-badge-go/commit/6775e282a9f823cf09c63095e0b46decc160bc7c)) - (repo-ranger[bot]) 558 | - PR [#172](https://github.com/tj-actions/coverage-badge-go/pull/172): actions/checkout from 4.1.1 to 4.1.2 ([dfb4e12](https://github.com/tj-actions/coverage-badge-go/commit/dfb4e12e7cb02d85a132d8feb61fb0d4b2ed64d1)) - (repo-ranger[bot]) 559 | - PR [#171](https://github.com/tj-actions/coverage-badge-go/pull/171): update actions/checkout digest to b4ffde6 ([1b481e2](https://github.com/tj-actions/coverage-badge-go/commit/1b481e2a4d2bffbb8ead911dfc9075bd32641599)) - (repo-ranger[bot]) 560 | - PR [#170](https://github.com/tj-actions/coverage-badge-go/pull/170): actions/checkout from 4.1.1 to 4.1.2 ([80b771d](https://github.com/tj-actions/coverage-badge-go/commit/80b771d3ec91d83043dc7900c392bc9dcd9c8475)) - (repo-ranger[bot]) 561 | - PR [#169](https://github.com/tj-actions/coverage-badge-go/pull/169): update actions/checkout digest to b4ffde6 ([5a512d7](https://github.com/tj-actions/coverage-badge-go/commit/5a512d76a0221812d989981e3556323032894d22)) - (repo-ranger[bot]) 562 | - PR [#168](https://github.com/tj-actions/coverage-badge-go/pull/168): actions/checkout from 4.1.1 to 4.1.2 ([f8cfc87](https://github.com/tj-actions/coverage-badge-go/commit/f8cfc87ffc0dc0408b0a60d12381c55f7f0853a8)) - (repo-ranger[bot]) 563 | - PR [#167](https://github.com/tj-actions/coverage-badge-go/pull/167): update actions/checkout digest to b4ffde6 ([1196493](https://github.com/tj-actions/coverage-badge-go/commit/11964931d7f259a5e087771b60126f3028153e44)) - (repo-ranger[bot]) 564 | - PR [#166](https://github.com/tj-actions/coverage-badge-go/pull/166): actions/checkout from 4.1.1 to 4.1.2 ([5d19eca](https://github.com/tj-actions/coverage-badge-go/commit/5d19ecaf6433e8b6c9f298d04d9b6cdbf10152db)) - (repo-ranger[bot]) 565 | - PR [#165](https://github.com/tj-actions/coverage-badge-go/pull/165): update actions/checkout digest to b4ffde6 ([b78e8a2](https://github.com/tj-actions/coverage-badge-go/commit/b78e8a2a0b4f081a173f429682e0600239cc44cc)) - (repo-ranger[bot]) 566 | - PR [#164](https://github.com/tj-actions/coverage-badge-go/pull/164): actions/checkout from 4.1.1 to 4.1.2 ([f8efa58](https://github.com/tj-actions/coverage-badge-go/commit/f8efa580db2935281828b4656929cdcd9f8dd9b4)) - (repo-ranger[bot]) 567 | - PR [#163](https://github.com/tj-actions/coverage-badge-go/pull/163): update actions/checkout digest to b4ffde6 ([3e26415](https://github.com/tj-actions/coverage-badge-go/commit/3e26415713401541f67817e5b13b74621a3ed916)) - (repo-ranger[bot]) 568 | - PR [#162](https://github.com/tj-actions/coverage-badge-go/pull/162): actions/checkout from 4.1.1 to 4.1.2 ([4edf97d](https://github.com/tj-actions/coverage-badge-go/commit/4edf97d017b9f9093900a4488a950842e396a36d)) - (repo-ranger[bot]) 569 | - PR [#161](https://github.com/tj-actions/coverage-badge-go/pull/161): update actions/checkout digest to b4ffde6 ([d44a8b4](https://github.com/tj-actions/coverage-badge-go/commit/d44a8b43a665b7b4342dcaf1dffd011c9ab33f9b)) - (repo-ranger[bot]) 570 | - PR [#160](https://github.com/tj-actions/coverage-badge-go/pull/160): actions/checkout from 4.1.1 to 4.1.2 ([d3493f5](https://github.com/tj-actions/coverage-badge-go/commit/d3493f55fdacbe02efd80671dc468fbf8e75510c)) - (repo-ranger[bot]) 571 | - PR [#159](https://github.com/tj-actions/coverage-badge-go/pull/159): update actions/checkout digest to b4ffde6 ([d17277c](https://github.com/tj-actions/coverage-badge-go/commit/d17277c3dc6a04b07b59df366b5ab9e8d040e382)) - (repo-ranger[bot]) 572 | - PR [#158](https://github.com/tj-actions/coverage-badge-go/pull/158): actions/checkout from 4.1.1 to 4.1.2 ([98cb598](https://github.com/tj-actions/coverage-badge-go/commit/98cb59839e876a3151cfa9ba32fd214909df44dd)) - (repo-ranger[bot]) 573 | - PR [#157](https://github.com/tj-actions/coverage-badge-go/pull/157): update actions/checkout digest to b4ffde6 ([de9ca7d](https://github.com/tj-actions/coverage-badge-go/commit/de9ca7dfcb784f34b172efbc44b639febe94ec6c)) - (repo-ranger[bot]) 574 | - PR [#156](https://github.com/tj-actions/coverage-badge-go/pull/156): actions/checkout from 4.1.1 to 4.1.2 ([b247c02](https://github.com/tj-actions/coverage-badge-go/commit/b247c02be19e0e9da8a4e71c91f23fffe5adab6e)) - (repo-ranger[bot]) 575 | - PR [#155](https://github.com/tj-actions/coverage-badge-go/pull/155): update actions/checkout digest to b4ffde6 ([f340505](https://github.com/tj-actions/coverage-badge-go/commit/f3405053284e133b098a4b067b86db0443f2d6bf)) - (repo-ranger[bot]) 576 | - PR [#154](https://github.com/tj-actions/coverage-badge-go/pull/154): actions/checkout from 4.1.1 to 4.1.2 ([b00bf4f](https://github.com/tj-actions/coverage-badge-go/commit/b00bf4fe457a54e0d7e2af6cdf3866fc6f26bca8)) - (repo-ranger[bot]) 577 | - PR [#153](https://github.com/tj-actions/coverage-badge-go/pull/153): update actions/checkout digest to b4ffde6 ([9b45546](https://github.com/tj-actions/coverage-badge-go/commit/9b4554622fee0f427a09f6dd1708f3de6fcd7d46)) - (repo-ranger[bot]) 578 | - PR [#152](https://github.com/tj-actions/coverage-badge-go/pull/152): actions/checkout from 4.1.1 to 4.1.2 ([e616717](https://github.com/tj-actions/coverage-badge-go/commit/e616717bd3cc46f763468e21ba2e24529358bb42)) - (repo-ranger[bot]) 579 | - PR [#151](https://github.com/tj-actions/coverage-badge-go/pull/151): update actions/checkout digest to b4ffde6 ([de0ece7](https://github.com/tj-actions/coverage-badge-go/commit/de0ece78417d83434fa5c5271205f5393c10eba0)) - (repo-ranger[bot]) 580 | - PR [#150](https://github.com/tj-actions/coverage-badge-go/pull/150): actions/checkout from 4.1.1 to 4.1.2 ([16cc1a0](https://github.com/tj-actions/coverage-badge-go/commit/16cc1a065d8b1c07af4cc581302b401c9c553676)) - (repo-ranger[bot]) 581 | - PR [#149](https://github.com/tj-actions/coverage-badge-go/pull/149): update actions/checkout digest to b4ffde6 ([f02198c](https://github.com/tj-actions/coverage-badge-go/commit/f02198c3bdcb89e7601f2069a54b36afeb802a35)) - (repo-ranger[bot]) 582 | - PR [#148](https://github.com/tj-actions/coverage-badge-go/pull/148): actions/checkout from 4.1.1 to 4.1.2 ([e4375e7](https://github.com/tj-actions/coverage-badge-go/commit/e4375e7dd6b785c49469cab2385b2c3033101f87)) - (repo-ranger[bot]) 583 | - PR [#147](https://github.com/tj-actions/coverage-badge-go/pull/147): update peter-evans/create-pull-request action to v6.0.2 ([9105710](https://github.com/tj-actions/coverage-badge-go/commit/9105710e0bb25bdb1be6e3705cd91bb75c901c3e)) - (repo-ranger[bot]) 584 | - PR [#146](https://github.com/tj-actions/coverage-badge-go/pull/146): update tj-actions/verify-changed-files action to v19 ([cd9c347](https://github.com/tj-actions/coverage-badge-go/commit/cd9c3478590fe1d11fc4fa503738c1624921c59b)) - (repo-ranger[bot]) 585 | - PR [#145](https://github.com/tj-actions/coverage-badge-go/pull/145): update peter-evans/create-pull-request action to v6.0.1 ([4bb0dee](https://github.com/tj-actions/coverage-badge-go/commit/4bb0dee936db8f84cc9d042ccd7c2535a0c71d26)) - (repo-ranger[bot]) 586 | - PR [#144](https://github.com/tj-actions/coverage-badge-go/pull/144): update codacy/codacy-analysis-cli-action action to v4.4.0 ([e3af227](https://github.com/tj-actions/coverage-badge-go/commit/e3af227e5a99f7c3d85c3c3cd2c7d2d9c0900848)) - (repo-ranger[bot]) 587 | - PR [#143](https://github.com/tj-actions/coverage-badge-go/pull/143): update tj-actions/verify-changed-files action to v18 ([2999b33](https://github.com/tj-actions/coverage-badge-go/commit/2999b3356c3e636367c4018d0b1cda4649f2bdc5)) - (repo-ranger[bot]) 588 | - PR [#142](https://github.com/tj-actions/coverage-badge-go/pull/142): to v2.4.2 ([44f30e0](https://github.com/tj-actions/coverage-badge-go/commit/44f30e04a7d4a40494a7194fcc22fa8633c8b94c)) - (repo-ranger[bot]) 589 | 590 | ## ⚙️ Miscellaneous Tasks 591 | 592 | - **deps:** Update actions/checkout digest to 0ad4b8f ([087b4ef](https://github.com/tj-actions/coverage-badge-go/commit/087b4efc3c49f088d8487a8c1285093ee48c2fbb)) - (renovate[bot]) 593 | - **deps:** Update peter-evans/create-pull-request action to v6.0.5 ([6efd701](https://github.com/tj-actions/coverage-badge-go/commit/6efd701cdae473eefd407f9d1f666e111be93441)) - (renovate[bot]) 594 | - **deps:** Update actions/checkout digest to 1d96c77 ([800849f](https://github.com/tj-actions/coverage-badge-go/commit/800849ff430ff79fe8f1db7b5649e6abe117a335)) - (renovate[bot]) 595 | - **deps:** Update actions/checkout digest to 1d96c77 ([175a66e](https://github.com/tj-actions/coverage-badge-go/commit/175a66efbf7a17396d58c1ea87f652c8ace18eb8)) - (renovate[bot]) 596 | - **deps:** Update actions/checkout digest to b4ffde6 ([d2a631f](https://github.com/tj-actions/coverage-badge-go/commit/d2a631f3cac8e1c25fd8ca534fa0a18dde458cf0)) - (renovate[bot]) 597 | - **deps:** Update actions/checkout digest to b4ffde6 ([7a5e654](https://github.com/tj-actions/coverage-badge-go/commit/7a5e65432dd8d392f4cc2a866ae99a64044aeff0)) - (renovate[bot]) 598 | - **deps:** Update actions/checkout digest to b4ffde6 ([fde0dac](https://github.com/tj-actions/coverage-badge-go/commit/fde0dac2e4168320f0ad3cdc6213056136650b5f)) - (renovate[bot]) 599 | - **deps:** Update peter-evans/create-pull-request action to v6.0.4 ([ee27f02](https://github.com/tj-actions/coverage-badge-go/commit/ee27f02379a952fe35c44dea020d91b0007dd8e2)) - (renovate[bot]) 600 | - **deps:** Update actions/checkout digest to b4ffde6 ([ee4ae2f](https://github.com/tj-actions/coverage-badge-go/commit/ee4ae2fc921116bf335e1a4b94bec76254441a56)) - (renovate[bot]) 601 | - **deps:** Update actions/checkout digest to b4ffde6 ([f851606](https://github.com/tj-actions/coverage-badge-go/commit/f8516067fd6be2846c3fa0a863a5488c5f8928ae)) - (renovate[bot]) 602 | - **deps:** Update actions/checkout digest to b4ffde6 ([f10c877](https://github.com/tj-actions/coverage-badge-go/commit/f10c877d0f8b1f63a344e11257e0e0b1da7100ef)) - (renovate[bot]) 603 | - **deps:** Update actions/checkout digest to b4ffde6 ([08288d3](https://github.com/tj-actions/coverage-badge-go/commit/08288d335c86bf317aa77eaf2dd112424843f8c3)) - (renovate[bot]) 604 | - **deps:** Update peter-evans/create-pull-request action to v6.0.3 ([dda44ad](https://github.com/tj-actions/coverage-badge-go/commit/dda44add46fe5d594b5e49a875624e8ac3620fe3)) - (renovate[bot]) 605 | - **deps:** Update actions/checkout digest to b4ffde6 ([df86a32](https://github.com/tj-actions/coverage-badge-go/commit/df86a321896572a7894ea3fef5aad8c8c9914361)) - (renovate[bot]) 606 | - **deps:** Update actions/checkout digest to b4ffde6 ([3db1ff6](https://github.com/tj-actions/coverage-badge-go/commit/3db1ff6dcfff146be6b21d9023ef985eef907f07)) - (renovate[bot]) 607 | - **deps:** Update actions/checkout digest to b4ffde6 ([0fb05e5](https://github.com/tj-actions/coverage-badge-go/commit/0fb05e58dbe2e04973324468d828a3ddece8bc30)) - (renovate[bot]) 608 | - **deps:** Update actions/checkout digest to b4ffde6 ([2450409](https://github.com/tj-actions/coverage-badge-go/commit/2450409b92725f65b8ddb97543bb074df641f5bc)) - (renovate[bot]) 609 | - **deps:** Update actions/checkout digest to b4ffde6 ([1f839e0](https://github.com/tj-actions/coverage-badge-go/commit/1f839e0975e0b48fc43fa5c1377b89e6670eaeaf)) - (renovate[bot]) 610 | - **deps:** Update actions/checkout digest to b4ffde6 ([cc79d3d](https://github.com/tj-actions/coverage-badge-go/commit/cc79d3dc2aa06f1afe8f5b3038b065044c050ed8)) - (renovate[bot]) 611 | - **deps:** Update actions/checkout digest to b4ffde6 ([dc19b95](https://github.com/tj-actions/coverage-badge-go/commit/dc19b957fe0832a6fc79be54540e2e92bed92777)) - (renovate[bot]) 612 | - **deps:** Update actions/checkout digest to b4ffde6 ([ba32e19](https://github.com/tj-actions/coverage-badge-go/commit/ba32e19888efa021481279149b84d762875b8731)) - (renovate[bot]) 613 | - **deps:** Update actions/checkout digest to b4ffde6 ([76658f1](https://github.com/tj-actions/coverage-badge-go/commit/76658f1016590f4445aebd96b6f219aa68a00fdc)) - (renovate[bot]) 614 | - **deps:** Update actions/checkout digest to b4ffde6 ([144e559](https://github.com/tj-actions/coverage-badge-go/commit/144e559035a8ae13e8d188d525e4e2fe10d0cbc1)) - (renovate[bot]) 615 | - **deps:** Update actions/checkout digest to b4ffde6 ([b99d5f7](https://github.com/tj-actions/coverage-badge-go/commit/b99d5f77a632f6c666ebe635f2ffbb2065e74297)) - (renovate[bot]) 616 | - **deps:** Update actions/checkout digest to b4ffde6 ([6bc2c36](https://github.com/tj-actions/coverage-badge-go/commit/6bc2c3672d96e7603a037df38f823ab00f4d0dea)) - (renovate[bot]) 617 | - **deps:** Update actions/checkout digest to b4ffde6 ([ba092e8](https://github.com/tj-actions/coverage-badge-go/commit/ba092e83174f579e0b3d0b66c257bab24b5dde14)) - (renovate[bot]) 618 | - **deps:** Update actions/checkout digest to b4ffde6 ([d15521b](https://github.com/tj-actions/coverage-badge-go/commit/d15521bee4c9cb2e92f962c055899906f3b74ed8)) - (renovate[bot]) 619 | - **deps:** Update actions/checkout digest to b4ffde6 ([9165175](https://github.com/tj-actions/coverage-badge-go/commit/9165175258efc32722e1b9fb2e3f218db61033a0)) - (renovate[bot]) 620 | - **deps:** Update actions/checkout digest to b4ffde6 ([cf7c0a1](https://github.com/tj-actions/coverage-badge-go/commit/cf7c0a1aa25c717b17272afbe20f30ed16c73fb3)) - (renovate[bot]) 621 | - **deps:** Update actions/checkout digest to b4ffde6 ([92989fd](https://github.com/tj-actions/coverage-badge-go/commit/92989fdef9b118a1abf8841d0d093b6e04e9ce87)) - (renovate[bot]) 622 | - **deps:** Update actions/checkout digest to b4ffde6 ([1e95309](https://github.com/tj-actions/coverage-badge-go/commit/1e95309c8bb5f5f00180a06726ace32b66d751ea)) - (renovate[bot]) 623 | - **deps:** Update actions/checkout digest to b4ffde6 ([5eda2d0](https://github.com/tj-actions/coverage-badge-go/commit/5eda2d07f7ccbbb533c7cea1f02d81b9c26853f4)) - (renovate[bot]) 624 | - **deps:** Update actions/checkout digest to b4ffde6 ([12434c9](https://github.com/tj-actions/coverage-badge-go/commit/12434c9754c13eb7a53c6e4b1d5cc78894f9053c)) - (renovate[bot]) 625 | - **deps:** Update actions/checkout digest to b4ffde6 ([f1a74a1](https://github.com/tj-actions/coverage-badge-go/commit/f1a74a175d92fcd5dc510ef8bf4b60e5b0401964)) - (renovate[bot]) 626 | - **deps:** Update actions/checkout digest to b4ffde6 ([2364d57](https://github.com/tj-actions/coverage-badge-go/commit/2364d572f2622578bf44713d4e56bccc3a98536e)) - (renovate[bot]) 627 | - **deps:** Update actions/checkout digest to b4ffde6 ([842febf](https://github.com/tj-actions/coverage-badge-go/commit/842febfc44d1581b5cfcf735fd6dac896abe169d)) - (renovate[bot]) 628 | - **deps:** Update actions/checkout digest to b4ffde6 ([5030de1](https://github.com/tj-actions/coverage-badge-go/commit/5030de1f8e7bb52888d951cb191266609b4ed08d)) - (renovate[bot]) 629 | - **deps:** Update peter-evans/create-pull-request action to v6.0.2 ([f2de2aa](https://github.com/tj-actions/coverage-badge-go/commit/f2de2aa2e65997d75602bdfa6e9809aa6c97a39b)) - (renovate[bot]) 630 | - **deps:** Update tj-actions/verify-changed-files action to v19 ([db09e2a](https://github.com/tj-actions/coverage-badge-go/commit/db09e2a548cf0758b033be3e67a0290ac95e0181)) - (renovate[bot]) 631 | - **deps:** Update peter-evans/create-pull-request action to v6.0.1 ([05a5277](https://github.com/tj-actions/coverage-badge-go/commit/05a52772395d66a1cc7a442696f48a7fe7ce102e)) - (renovate[bot]) 632 | - **deps:** Update codacy/codacy-analysis-cli-action action to v4.4.0 ([d44f7d4](https://github.com/tj-actions/coverage-badge-go/commit/d44f7d4883006565c1dd45e48b0b1843beb97f88)) - (renovate[bot]) 633 | - **deps:** Update tj-actions/verify-changed-files action to v18 ([a042b9f](https://github.com/tj-actions/coverage-badge-go/commit/a042b9ffefd73a3c0e0e8b3aa6e5df79e530b23c)) - (renovate[bot]) 634 | 635 | ## ⬆️ Upgrades 636 | 637 | - Upgraded from v2.4.1 -> v2.4.2 638 | ([58e4032](https://github.com/tj-actions/coverage-badge-go/commit/58e40328dee363f2c6e8810328d38a873639e861)) - (jackton1) 639 | 640 | # [2.4.2](https://github.com/tj-actions/coverage-badge-go/compare/v2.4.1...v2.4.2) - (2024-02-01) 641 | 642 | ## 📦 Bumps 643 | 644 | - Bump actions/checkout from 4.1.0 to 4.1.1 645 | 646 | Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.0 to 4.1.1. 647 | - [Release notes](https://github.com/actions/checkout/releases) 648 | - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) 649 | - [Commits](https://github.com/actions/checkout/compare/8ade135a41bc03ea155e62e844d188df1ea18608...b4ffde65f46336ab88eb53be808477a3936bae11) 650 | 651 | --- 652 | updated-dependencies: 653 | - dependency-name: actions/checkout 654 | dependency-type: direct:production 655 | update-type: version-update:semver-patch 656 | ... 657 | 658 | Signed-off-by: dependabot[bot] ([b80d2ec](https://github.com/tj-actions/coverage-badge-go/commit/b80d2ec4f68837cbda10ec5098731f2a93dbe1f9)) - (dependabot[bot]) 659 | 660 | ## ➖ Remove 661 | 662 | - Deleted .github/workflows/auto-approve.yml ([1d5f55e](https://github.com/tj-actions/coverage-badge-go/commit/1d5f55ea69e09872b7d50fb9b3967c157fa74521)) - (Tonye Jack) 663 | - Deleted .github/workflows/greetings.yml ([f29d6b9](https://github.com/tj-actions/coverage-badge-go/commit/f29d6b9cb0f601fad8ef92026a3da939368c80ba)) - (Tonye Jack) 664 | - Deleted .github/ISSUE_TEMPLATE/feature_request.yaml ([5d7def8](https://github.com/tj-actions/coverage-badge-go/commit/5d7def85810fc32652c9380b2eff9a1c3138473e)) - (Tonye Jack) 665 | - Deleted .github/ISSUE_TEMPLATE/bug_report.yaml ([64e64a5](https://github.com/tj-actions/coverage-badge-go/commit/64e64a5c8f8d753b8b88f952f1635c438f18483e)) - (Tonye Jack) 666 | - Deleted .github/FUNDING.yml ([6d69c1a](https://github.com/tj-actions/coverage-badge-go/commit/6d69c1ab1ede11e90e47bad43daa142a18e813ee)) - (Tonye Jack) 667 | 668 | ## 🔄 Update 669 | 670 | - Update README.md ([84540b9](https://github.com/tj-actions/coverage-badge-go/commit/84540b9f82b4f569ac9f248cf6f2893ac3cc4791)) - (Tonye Jack) 671 | - Updated README.md 672 | ([ebeedf3](https://github.com/tj-actions/coverage-badge-go/commit/ebeedf3c9b3a7bf9d3d6e1abd79268c850c274f2)) - (jackton1) 673 | - Update update-readme.yml ([4fd7524](https://github.com/tj-actions/coverage-badge-go/commit/4fd7524719a4cdcd34e035218dad4243acbe1c82)) - (Tonye Jack) 674 | - Update README.md ([52750ec](https://github.com/tj-actions/coverage-badge-go/commit/52750ec3a1b0b8a8724428603d204593c00a7c1c)) - (Tonye Jack) 675 | - Update test.yml ([8709f4a](https://github.com/tj-actions/coverage-badge-go/commit/8709f4ae8dcc8d2580b82da8bb0232c38dff3be3)) - (Tonye Jack) 676 | - Update README.md ([95adf2f](https://github.com/tj-actions/coverage-badge-go/commit/95adf2fe96deff5564899c0f45ebafeec372ae3e)) - (Tonye Jack) 677 | - Update README.md ([aaaed0a](https://github.com/tj-actions/coverage-badge-go/commit/aaaed0a0aadfa8d46c0fc49e4732c5b4faa9ae8b)) - (Tonye Jack) 678 | - Updated README.md 679 | ([7c2aef4](https://github.com/tj-actions/coverage-badge-go/commit/7c2aef4d7a3311093df5018031569129dfe3688d)) - (repo-ranger[bot]) 680 | - Updated .github/FUNDING.yml ([8d213f5](https://github.com/tj-actions/coverage-badge-go/commit/8d213f589d52516673f96ff2c0f747d58c37d392)) - (Tonye Jack) 681 | - Updated .github/FUNDING.yml ([2d8f826](https://github.com/tj-actions/coverage-badge-go/commit/2d8f8263c78d14cf119986f454e2c460069ec1c8)) - (Tonye Jack) 682 | - Updated README.md ([#129](https://github.com/tj-actions/coverage-badge-go/issues/129)) 683 | 684 | Co-authored-by: jackton1 ([5c957b0](https://github.com/tj-actions/coverage-badge-go/commit/5c957b04cb7e09da191114c9a031833aa46ffcbe)) - (tj-actions[bot]) 685 | - Update README.md ([440ae04](https://github.com/tj-actions/coverage-badge-go/commit/440ae04542dfb54ca6e1c04a7a85117e174aeb51)) - (Tonye Jack) 686 | - Updated README.md 687 | ([c7066ff](https://github.com/tj-actions/coverage-badge-go/commit/c7066ffd4ed7cb492a110623861c90c563092f1b)) - (repo-ranger[bot]) 688 | 689 | ## 📝 Other 690 | 691 | - PR [#141](https://github.com/tj-actions/coverage-badge-go/pull/141): update peter-evans/create-pull-request action to v6 ([6fba90f](https://github.com/tj-actions/coverage-badge-go/commit/6fba90f38cdcfbd4f4957baa010cac7a66b87380)) - (repo-ranger[bot]) 692 | - PR [#140](https://github.com/tj-actions/coverage-badge-go/pull/140): update tj-actions/verify-changed-files action to v17 ([800997e](https://github.com/tj-actions/coverage-badge-go/commit/800997e3cb641451117f2deffaa187fb19bd10e7)) - (repo-ranger[bot]) 693 | - PR [#139](https://github.com/tj-actions/coverage-badge-go/pull/139): update github/codeql-action action to v3 ([f82a49d](https://github.com/tj-actions/coverage-badge-go/commit/f82a49d0ad0f5294b19f56ca6eeb56b441680314)) - (repo-ranger[bot]) 694 | - PR [#138](https://github.com/tj-actions/coverage-badge-go/pull/138): update actions/setup-go action to v5 ([eb4c589](https://github.com/tj-actions/coverage-badge-go/commit/eb4c589d2f414fffe45ff0b90b9ef8dd2750e16d)) - (repo-ranger[bot]) 695 | - PR [#137](https://github.com/tj-actions/coverage-badge-go/pull/137): README.md ([5bc013c](https://github.com/tj-actions/coverage-badge-go/commit/5bc013c23cd08383111fec8f454b121e34ccbf9f)) - (repo-ranger[bot]) 696 | - PR [#136](https://github.com/tj-actions/coverage-badge-go/pull/136): update test.yml ([6faef64](https://github.com/tj-actions/coverage-badge-go/commit/6faef64add8a233302afb6da61bd50c7266c6049)) - (repo-ranger[bot]) 697 | - Merge branch 'main' into chore-update-test.yml ([a91901f](https://github.com/tj-actions/coverage-badge-go/commit/a91901f9a3017b02b17fdda936456703cd6aa115)) - (repo-ranger[bot]) 698 | - PR [#135](https://github.com/tj-actions/coverage-badge-go/pull/135): actions/checkout from 4.1.0 to 4.1.1 ([76dc04a](https://github.com/tj-actions/coverage-badge-go/commit/76dc04a52b744cd546380f1fa0c66e105c8bcf26)) - (repo-ranger[bot]) 699 | - PR [#134](https://github.com/tj-actions/coverage-badge-go/pull/134): update actions/checkout digest to 8ade135 ([8a8f324](https://github.com/tj-actions/coverage-badge-go/commit/8a8f32406682db46e35d6f80cdbc4fbcbbb351e1)) - (repo-ranger[bot]) 700 | - PR [#133](https://github.com/tj-actions/coverage-badge-go/pull/133): update actions/checkout action to v4 ([f60c34f](https://github.com/tj-actions/coverage-badge-go/commit/f60c34f164729742ff7164c5643e36e80d5dffc7)) - (repo-ranger[bot]) 701 | - PR [#132](https://github.com/tj-actions/coverage-badge-go/pull/132): update tj-actions/release-tagger action to v4 ([eff6d0d](https://github.com/tj-actions/coverage-badge-go/commit/eff6d0d496f3bcf502e474ae2196d33ee3a3e44d)) - (repo-ranger[bot]) 702 | - PR [#131](https://github.com/tj-actions/coverage-badge-go/pull/131): README.md ([8bb89f6](https://github.com/tj-actions/coverage-badge-go/commit/8bb89f611184c82dc974b648f0ebcf6ccd63c430)) - (repo-ranger[bot]) 703 | - PR [#130](https://github.com/tj-actions/coverage-badge-go/pull/130): update tj-actions/auto-doc action to v3 ([449619f](https://github.com/tj-actions/coverage-badge-go/commit/449619f0329789ed58838c6b862eea53c9fad8d0)) - (repo-ranger[bot]) 704 | - PR [#128](https://github.com/tj-actions/coverage-badge-go/pull/128): README.md ([77e795f](https://github.com/tj-actions/coverage-badge-go/commit/77e795f6cb88ebd55112cd5fa4d1b8c20f73511f)) - (repo-ranger[bot]) 705 | - PR [#127](https://github.com/tj-actions/coverage-badge-go/pull/127): to v2.4.1 ([11826ab](https://github.com/tj-actions/coverage-badge-go/commit/11826ab246b409f504ff5ad215dfa74608e6a1d1)) - (repo-ranger[bot]) 706 | 707 | ## ⚙️ Miscellaneous Tasks 708 | 709 | - **deps:** Update peter-evans/create-pull-request action to v6 ([e4e6423](https://github.com/tj-actions/coverage-badge-go/commit/e4e64236ccbc4e710d8069025a9fb6f3ba87e2b1)) - (renovate[bot]) 710 | - **deps:** Update tj-actions/verify-changed-files action to v17 ([8a71804](https://github.com/tj-actions/coverage-badge-go/commit/8a71804d180feb505d7f7ff8a5027ce1482f10b2)) - (renovate[bot]) 711 | - **deps:** Update github/codeql-action action to v3 ([b813a4d](https://github.com/tj-actions/coverage-badge-go/commit/b813a4da34a67a60470fc141cf601c7533b41951)) - (renovate[bot]) 712 | - **deps:** Update actions/setup-go action to v5 ([388e458](https://github.com/tj-actions/coverage-badge-go/commit/388e458d9058c2c030aeb7538807a7f7325e07e1)) - (renovate[bot]) 713 | - Update test.yml ([1282bb3](https://github.com/tj-actions/coverage-badge-go/commit/1282bb3bd545083f5246e8fc8e739176e078135d)) - (Tonye Jack) 714 | - **deps:** Update actions/checkout digest to 8ade135 ([ad0287c](https://github.com/tj-actions/coverage-badge-go/commit/ad0287c7c1eb032087fad6ea4de6398ce104662a)) - (renovate[bot]) 715 | - **deps:** Update actions/checkout action to v4 ([37458f6](https://github.com/tj-actions/coverage-badge-go/commit/37458f6d2be24bb8763db316ef577b86915f29ce)) - (renovate[bot]) 716 | - **deps:** Update tj-actions/release-tagger action to v4 ([9be4541](https://github.com/tj-actions/coverage-badge-go/commit/9be45413634d57de6700fe16e01a0963e90563ba)) - (renovate[bot]) 717 | - **deps:** Update tj-actions/auto-doc action to v3 ([51ac56e](https://github.com/tj-actions/coverage-badge-go/commit/51ac56ec1efa7b2f3efbde29e0abae11f96b0e50)) - (renovate[bot]) 718 | 719 | ## ⬆️ Upgrades 720 | 721 | - Upgraded from v2.4 -> v2.4.1 722 | ([805eac4](https://github.com/tj-actions/coverage-badge-go/commit/805eac4c1ba597288ed307abcde24ac127f10062)) - (jackton1) 723 | 724 | # [2.4.1](https://github.com/tj-actions/coverage-badge-go/compare/v2.4...v2.4.1) - (2023-08-20) 725 | 726 | ## 🐛 Bug Fixes 727 | 728 | - Add spaces between extra arguments to prevent errors ([#125](https://github.com/tj-actions/coverage-badge-go/issues/125)) ([23e9b07](https://github.com/tj-actions/coverage-badge-go/commit/23e9b076cfd84c2be5def80168d67219b69985bb)) - (Michael Donahue) 729 | 730 | ## 📚 Documentation 731 | 732 | - Add mdonahue-godaddy as a contributor for bug, and code ([#126](https://github.com/tj-actions/coverage-badge-go/issues/126)) ([ec47d34](https://github.com/tj-actions/coverage-badge-go/commit/ec47d349bdd5ea7f35c984f0e7ca815dc681a76c)) - (allcontributors[bot]) 733 | 734 | ## 📝 Other 735 | 736 | - PR [#124](https://github.com/tj-actions/coverage-badge-go/pull/124): to v2.4 ([5954584](https://github.com/tj-actions/coverage-badge-go/commit/5954584d44e65682122b946469ae43da22d9bbda)) - (repo-ranger[bot]) 737 | - PR [#123](https://github.com/tj-actions/coverage-badge-go/pull/123): README.md ([5a7c13b](https://github.com/tj-actions/coverage-badge-go/commit/5a7c13b8d06d46780b279d6a167d6b00b14fc2f2)) - (repo-ranger[bot]) 738 | - Merge branch 'main' into chore/update-readme ([39650cf](https://github.com/tj-actions/coverage-badge-go/commit/39650cf9af11062730a808108f01526ac8cac009)) - (repo-ranger[bot]) 739 | 740 | ## ⬆️ Upgrades 741 | 742 | - Upgraded from v2.3 -> v2.4 743 | ([f2ca982](https://github.com/tj-actions/coverage-badge-go/commit/f2ca9826d8b0fa11cb5657cd9d5841b389ecde43)) - (jackton1) 744 | 745 | # [2.4](https://github.com/tj-actions/coverage-badge-go/compare/v2.3...v2.4) - (2023-08-02) 746 | 747 | ## 🚀 Features 748 | 749 | - Add support for specifying a link ([#120](https://github.com/tj-actions/coverage-badge-go/issues/120)) ([602729a](https://github.com/tj-actions/coverage-badge-go/commit/602729a8131056231559831afc4abd406231c0a3)) - (Tonye Jack) 750 | 751 | ## 📦 Bumps 752 | 753 | - Bump hmarr/auto-approve-action from 2 to 3 ([#119](https://github.com/tj-actions/coverage-badge-go/issues/119)) 754 | 755 | Bumps [hmarr/auto-approve-action](https://github.com/hmarr/auto-approve-action) from 2 to 3. 756 | - [Release notes](https://github.com/hmarr/auto-approve-action/releases) 757 | - [Commits](https://github.com/hmarr/auto-approve-action/compare/v2...v3) 758 | 759 | --- 760 | updated-dependencies: 761 | - dependency-name: hmarr/auto-approve-action 762 | dependency-type: direct:production 763 | update-type: version-update:semver-major 764 | ... 765 | 766 | Signed-off-by: dependabot[bot] 767 | Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> ([0533d14](https://github.com/tj-actions/coverage-badge-go/commit/0533d14d8631ef6fbd1b910d62eb7d71bb9dd9c5)) - (dependabot[bot]) 768 | 769 | ## 🔄 Update 770 | 771 | - Updated README.md ([#121](https://github.com/tj-actions/coverage-badge-go/issues/121)) 772 | 773 | Co-authored-by: jackton1 ([bb7c737](https://github.com/tj-actions/coverage-badge-go/commit/bb7c737ea941ce5aac571a1a7e0b9f3f611adc9f)) - (tj-actions[bot]) 774 | - Updated README.md 775 | ([ba2b7c1](https://github.com/tj-actions/coverage-badge-go/commit/ba2b7c1c941205ee3bc2077bb564b7d80c27bce9)) - (jackton1) 776 | - Update test.yml ([c5a67fb](https://github.com/tj-actions/coverage-badge-go/commit/c5a67fb1ade3de0d984db59a657100bdab502781)) - (Tonye Jack) 777 | - Update dependabot.yml ([173e1db](https://github.com/tj-actions/coverage-badge-go/commit/173e1dbb5bbfd8f0fbadcfadb9adeb531bbb51ef)) - (Tonye Jack) 778 | 779 | ## 📝 Other 780 | 781 | - PR [#118](https://github.com/tj-actions/coverage-badge-go/pull/118): to v2.3 ([bbb731d](https://github.com/tj-actions/coverage-badge-go/commit/bbb731dc3b89f2ef28678a85d7121f3d85c17062)) - (repo-ranger[bot]) 782 | 783 | ## ⚙️ Miscellaneous Tasks 784 | 785 | - Updated coverage badge ([#122](https://github.com/tj-actions/coverage-badge-go/issues/122)) ([497bd32](https://github.com/tj-actions/coverage-badge-go/commit/497bd321c004bde52e5f112e0a6943cf32055ee6)) - (tj-actions[bot]) 786 | 787 | ## ⬆️ Upgrades 788 | 789 | - Upgraded from v2.2 -> v2.3 790 | ([aa07fa4](https://github.com/tj-actions/coverage-badge-go/commit/aa07fa470d482b4546089a43005d9c429ff695ea)) - (jackton1) 791 | 792 | # [2.3](https://github.com/tj-actions/coverage-badge-go/compare/v2.2...v2.3) - (2023-07-05) 793 | 794 | ## ➕ Add 795 | 796 | - Create dependabot.yml ([442a4d8](https://github.com/tj-actions/coverage-badge-go/commit/442a4d8087468eab663cf40e6bf89b5ccbc9f0b0)) - (Tonye Jack) 797 | - Create FUNDING.yml ([5f51ccf](https://github.com/tj-actions/coverage-badge-go/commit/5f51ccfaa2a9a9ab8ade604d5bca40535526caf0)) - (Tonye Jack) 798 | 799 | ## ➖ Remove 800 | 801 | - Deleted .github/workflows/auto-merge.yml ([1c23fb0](https://github.com/tj-actions/coverage-badge-go/commit/1c23fb01107b539eca85e0a5683e6c3ab51069cb)) - (Tonye Jack) 802 | 803 | ## 🔄 Update 804 | 805 | - Updated renovate.json ([95aecc4](https://github.com/tj-actions/coverage-badge-go/commit/95aecc4a359f9a7c8bde5f79312443ecf2af9a24)) - (Tonye Jack) 806 | - Updated README.md 807 | ([a7efa98](https://github.com/tj-actions/coverage-badge-go/commit/a7efa98726c32d13af57183b540a66000827f8f9)) - (jackton1) 808 | - Updated README.md 809 | ([dcb3c37](https://github.com/tj-actions/coverage-badge-go/commit/dcb3c37ad5916ebcb8cccd1b385516b791c07381)) - (jackton1) 810 | 811 | ## 📝 Other 812 | 813 | - PR [#114](https://github.com/tj-actions/coverage-badge-go/pull/114): README.md ([5f8f005](https://github.com/tj-actions/coverage-badge-go/commit/5f8f00560aa967631385a54811c1745ca623309d)) - (repo-ranger[bot]) 814 | - PR [#112](https://github.com/tj-actions/coverage-badge-go/pull/112): README.md ([f375af6](https://github.com/tj-actions/coverage-badge-go/commit/f375af696b96d6096482148cc77e9ce8384f34e5)) - (Tonye Jack) 815 | - PR [#110](https://github.com/tj-actions/coverage-badge-go/pull/110): to v2.2 ([92a7dcd](https://github.com/tj-actions/coverage-badge-go/commit/92a7dcd6ff7aaa676c2f9e4d77f86ec49a2fe3c6)) - (repo-ranger[bot]) 816 | 817 | ## ⚙️ Miscellaneous Tasks 818 | 819 | - **deps:** Update tj-actions/verify-changed-files action to v16 ([382a4ba](https://github.com/tj-actions/coverage-badge-go/commit/382a4ba501477b680a724eb8c1f08b68d19f6a66)) - (renovate[bot]) 820 | - **deps:** Update peter-evans/create-pull-request action to v5.0.2 ([78d1d9a](https://github.com/tj-actions/coverage-badge-go/commit/78d1d9a64945d652cc819980ae2d0434f9ba17bf)) - (renovate[bot]) 821 | - **deps:** Update tj-actions/verify-changed-files action to v15 ([c619e31](https://github.com/tj-actions/coverage-badge-go/commit/c619e31c67fab4434c637d5ee9ffd697e4afd7fe)) - (renovate[bot]) 822 | - Update readme ([#113](https://github.com/tj-actions/coverage-badge-go/issues/113)) ([6749355](https://github.com/tj-actions/coverage-badge-go/commit/6749355f12f5fe110c5ee6c0fbd4863250e68bf4)) - (Tonye Jack) 823 | - **deps:** Update peter-evans/create-pull-request action to v5.0.1 ([68133dc](https://github.com/tj-actions/coverage-badge-go/commit/68133dc829fcdc3ef68b08fb95dbf2c17c7cfee7)) - (renovate[bot]) 824 | 825 | ## ⬆️ Upgrades 826 | 827 | - Upgraded from v2.1 -> v2.2 828 | ([0106ba2](https://github.com/tj-actions/coverage-badge-go/commit/0106ba2aff32144de72f52ce87707561ad463e48)) - (jackton1) 829 | 830 | # [2.2](https://github.com/tj-actions/coverage-badge-go/compare/v2.1...v2.2) - (2023-04-09) 831 | 832 | ## ➕ Add 833 | 834 | - Create codeql.yml ([c53e1e5](https://github.com/tj-actions/coverage-badge-go/commit/c53e1e52cc74270762d778081adc964c83e824ef)) - (Tonye Jack) 835 | 836 | ## 🔄 Update 837 | 838 | - Update peter-evans/create-pull-request action to v5 ([a141df7](https://github.com/tj-actions/coverage-badge-go/commit/a141df7a3b39116506780047ee99a4e8c4d13588)) - (renovate[bot]) 839 | - Update tj-actions/verify-changed-files action to v14 ([493112b](https://github.com/tj-actions/coverage-badge-go/commit/493112b866bca652da84c2cca05a1e1d8e89fbeb)) - (renovate[bot]) 840 | - Update actions/setup-go action to v4 ([7de3902](https://github.com/tj-actions/coverage-badge-go/commit/7de3902cf040afe05f279ddcbca15b4287cb2924)) - (renovate[bot]) 841 | - Update peter-evans/create-pull-request action to v4.2.4 ([dc8b0f1](https://github.com/tj-actions/coverage-badge-go/commit/dc8b0f161cf2fb63cf75bea8a2f7c613a08e41c6)) - (renovate[bot]) 842 | - Update tj-actions/release-tagger action to v3 ([fafd5cf](https://github.com/tj-actions/coverage-badge-go/commit/fafd5cfb97c971118d5bbdcb32516d45cde19aad)) - (renovate[bot]) 843 | - Update tj-actions/github-changelog-generator action to v1.18 ([135a596](https://github.com/tj-actions/coverage-badge-go/commit/135a59628c7cab12ca5281f73b311b4573f3851c)) - (renovate[bot]) 844 | - Update tj-actions/auto-doc action to v2 ([3f059aa](https://github.com/tj-actions/coverage-badge-go/commit/3f059aa01ad6273c014f3b5ae8e3ed527b58a412)) - (renovate[bot]) 845 | - Update codacy/codacy-analysis-cli-action action to v4.3.0 ([f642e89](https://github.com/tj-actions/coverage-badge-go/commit/f642e89dce95ccbeec6fe5198e9a3a523a49e96d)) - (renovate[bot]) 846 | - Update pascalgn/automerge-action action to v0.15.6 ([e376355](https://github.com/tj-actions/coverage-badge-go/commit/e376355a5c810692c63fc7e84c35ff14f2c4c05e)) - (renovate[bot]) 847 | - Update tj-actions/verify-changed-files action to v13 ([bfa26c1](https://github.com/tj-actions/coverage-badge-go/commit/bfa26c1e269dfdf1eaefc41a96f20c4ce1b325e4)) - (renovate[bot]) 848 | - Updated .github/workflows/update-readme.yml ([8207144](https://github.com/tj-actions/coverage-badge-go/commit/8207144e567740ccd4b0c2518e19d08168153762)) - (Tonye Jack) 849 | - Updated .github/workflows/update-readme.yml ([e574f55](https://github.com/tj-actions/coverage-badge-go/commit/e574f55b0963e87b70364f62397cd654ecb0c52f)) - (Tonye Jack) 850 | - Updated .github/workflows/update-readme.yml ([e75964a](https://github.com/tj-actions/coverage-badge-go/commit/e75964aa50c7ec9d4fd708856a286553dcc46115)) - (Tonye Jack) 851 | - Updated .github/workflows/update-readme.yml ([f7862af](https://github.com/tj-actions/coverage-badge-go/commit/f7862af4ff44c048e926c947930afc395c1a32fb)) - (Tonye Jack) 852 | - Update actions/checkout action to v3.3.0 ([f7fe9bb](https://github.com/tj-actions/coverage-badge-go/commit/f7fe9bb7a121e4f32f551be868024570848bfa3a)) - (renovate[bot]) 853 | - Update tj-actions/auto-doc action to v1.7.3 ([a0fcff4](https://github.com/tj-actions/coverage-badge-go/commit/a0fcff44bf207b46818769900e4df5df486a8c56)) - (renovate[bot]) 854 | - Update tj-actions/auto-doc action to v1.7.2 ([acfd364](https://github.com/tj-actions/coverage-badge-go/commit/acfd3649ed4302795f16fc08f059e0c077198fcd)) - (renovate[bot]) 855 | - Updated README.md 856 | ([78ab314](https://github.com/tj-actions/coverage-badge-go/commit/78ab314e415bd5188aafdbd060adb7bd00ff5a6a)) - (jackton1) 857 | - Updated .github/workflows/update-readme.yml ([6fa2c62](https://github.com/tj-actions/coverage-badge-go/commit/6fa2c6205584ada97a37f0b2f72c6febdb5a7748)) - (Tonye Jack) 858 | - Updated README.md 859 | ([6ec3e6c](https://github.com/tj-actions/coverage-badge-go/commit/6ec3e6cedbaf42edddd658962029b203f0c6a934)) - (jackton1) 860 | - Update tj-actions/auto-doc action to v1.7.1 ([b0625cf](https://github.com/tj-actions/coverage-badge-go/commit/b0625cfadad7baa5e44c4fad2bc6f508973a1aae)) - (renovate[bot]) 861 | - Update tj-actions/github-changelog-generator action to v1.17 ([03af34d](https://github.com/tj-actions/coverage-badge-go/commit/03af34dc2dbb3f165e859a56867a226207f4a46a)) - (renovate[bot]) 862 | - Updated README.md 863 | ([87fc1a1](https://github.com/tj-actions/coverage-badge-go/commit/87fc1a1003bed7d5cf045b811d09f3b53160a9a4)) - (jackton1) 864 | - Update update-readme.yml ([a8dd969](https://github.com/tj-actions/coverage-badge-go/commit/a8dd9695022332a528c969459b67fc9850830427)) - (Tonye Jack) 865 | - Update tj-actions/auto-doc action to v1.6.0 ([7b92305](https://github.com/tj-actions/coverage-badge-go/commit/7b9230509bcdd25f58e056bfd9267f00a387203a)) - (renovate[bot]) 866 | - Update tj-actions/verify-changed-files action to v13 ([f8e8651](https://github.com/tj-actions/coverage-badge-go/commit/f8e8651359616ab3c03a27dccad4241f48caa42d)) - (renovate[bot]) 867 | - Update test.yml ([9016cac](https://github.com/tj-actions/coverage-badge-go/commit/9016cacdcd26576fd1909839382160d3aabf223f)) - (Tonye Jack) 868 | - Update cirrus-actions/rebase action to v1.8 ([963e304](https://github.com/tj-actions/coverage-badge-go/commit/963e30497463f0f6230a55217ea4d5e117760b5e)) - (renovate[bot]) 869 | - Update sync-release-version.yml ([28973b2](https://github.com/tj-actions/coverage-badge-go/commit/28973b2e03a1cd3b8cd114d1ebbd024c2951698c)) - (Tonye Jack) 870 | - Update tj-actions/auto-doc action to v1.5.0 ([144ebd4](https://github.com/tj-actions/coverage-badge-go/commit/144ebd4ccfab93a045d067b418f203756aff8893)) - (renovate[bot]) 871 | - Update peter-evans/create-pull-request action to v4.2.3 ([c447c53](https://github.com/tj-actions/coverage-badge-go/commit/c447c537f34dbe343b93bfcb5fd80d0bcb232ea4)) - (renovate[bot]) 872 | - Update peter-evans/create-pull-request action to v4.2.2 ([2a7a3a2](https://github.com/tj-actions/coverage-badge-go/commit/2a7a3a23bb894ebae625bf9a8a82d3e0cbd7df7a)) - (renovate[bot]) 873 | - Update README.md ([1ce9edf](https://github.com/tj-actions/coverage-badge-go/commit/1ce9edf86f24b779dcc4e3db246c7b5fc2c67095)) - (Tonye Jack) 874 | - Update peter-evans/create-pull-request action to v4.2.1 ([cdac6ae](https://github.com/tj-actions/coverage-badge-go/commit/cdac6ae2e673173b62cff7314022064a059d8228)) - (renovate[bot]) 875 | - Update README.md ([569ae3d](https://github.com/tj-actions/coverage-badge-go/commit/569ae3da6ed90563076c0ab19f0a8b43757c40dc)) - (Tonye Jack) 876 | - Updated README.md 877 | ([ee0e129](https://github.com/tj-actions/coverage-badge-go/commit/ee0e12952aa25606dd733d663a71d1258365e4b3)) - (jackton1) 878 | - Update tj-actions/auto-doc action to v1.4.3 ([54024d2](https://github.com/tj-actions/coverage-badge-go/commit/54024d2326427433c4d405e70c837066f66077b1)) - (renovate[bot]) 879 | - Updated .github/ISSUE_TEMPLATE/bug_report.yaml ([f68315b](https://github.com/tj-actions/coverage-badge-go/commit/f68315b804b1d5ac727ef55ad91d50cd69b013da)) - (Tonye Jack) 880 | - Update peter-evans/create-pull-request action to v4.2.0 ([33f05a0](https://github.com/tj-actions/coverage-badge-go/commit/33f05a0195f262a112e7515729f150492d89ba23)) - (renovate[bot]) 881 | - Update pascalgn/automerge-action action to v0.15.5 ([dac2720](https://github.com/tj-actions/coverage-badge-go/commit/dac272053cab9c239c9a8063e132531d58fea1c2)) - (renovate[bot]) 882 | - Update peter-evans/create-pull-request action to v4.1.4 ([f64008f](https://github.com/tj-actions/coverage-badge-go/commit/f64008ffbd74607504ebd0e5e273ff8c1dad27e8)) - (renovate[bot]) 883 | - Update tj-actions/verify-changed-files action to v12 ([1034e19](https://github.com/tj-actions/coverage-badge-go/commit/1034e19fb4aef4903c11d3cb492cb2f3b7bdb603)) - (renovate[bot]) 884 | 885 | ## 📝 Other 886 | 887 | - PR [#109](https://github.com/tj-actions/coverage-badge-go/pull/109): switch to use tj-actions/git-cliff for generating changelogs ([7f447a2](https://github.com/tj-actions/coverage-badge-go/commit/7f447a2281e6c95d57526e53b2e800dfb3c07425)) - (repo-ranger[bot]) 888 | - PR [#95](https://github.com/tj-actions/coverage-badge-go/pull/95): README.md ([992e05a](https://github.com/tj-actions/coverage-badge-go/commit/992e05aa178a67a115814dbcc2070507d420b07b)) - (repo-ranger[bot]) 889 | - PR [#94](https://github.com/tj-actions/coverage-badge-go/pull/94): README.md ([95a3861](https://github.com/tj-actions/coverage-badge-go/commit/95a3861c1fd625ca0f807066ae8ce73959d58a81)) - (repo-ranger[bot]) 890 | - PR [#91](https://github.com/tj-actions/coverage-badge-go/pull/91): README.md ([a39030e](https://github.com/tj-actions/coverage-badge-go/commit/a39030e07db14075ad34cbee36fd1cc34cc9fa43)) - (repo-ranger[bot]) 891 | - PR [#89](https://github.com/tj-actions/coverage-badge-go/pull/89): ([7461e1f](https://github.com/tj-actions/coverage-badge-go/commit/7461e1fecd96dddd1182fa9667440ac69d3715ef)) - (Tonye Jack) 892 | - PR [#90](https://github.com/tj-actions/coverage-badge-go/pull/90): ([a7663de](https://github.com/tj-actions/coverage-badge-go/commit/a7663def663d64c2d6e70c13488544e959f21664)) - (Tonye Jack) 893 | - PR [#83](https://github.com/tj-actions/coverage-badge-go/pull/83): ([7865ba5](https://github.com/tj-actions/coverage-badge-go/commit/7865ba580e58a5a269544d2fcfb77998c727d695)) - (Tonye Jack) 894 | - PR [#77](https://github.com/tj-actions/coverage-badge-go/pull/77): ([df58cda](https://github.com/tj-actions/coverage-badge-go/commit/df58cda7e5c3b32503c0545f50f6ff8c4ef896aa)) - (Tonye Jack) 895 | 896 | ## ⚙️ Miscellaneous Tasks 897 | 898 | - Switch to use tj-actions/git-cliff for generating changelogs ([efe4eb6](https://github.com/tj-actions/coverage-badge-go/commit/efe4eb6eb113dcdce6ff862bf3ab814cecf433f5)) - (Tonye Jack) 899 | 900 | ## ⬆️ Upgrades 901 | 902 | - Upgraded from v1.2 -> v2.1 903 | ([8467cc8](https://github.com/tj-actions/coverage-badge-go/commit/8467cc8b150cd59011d0018429b352ff357357bb)) - (jackton1) 904 | 905 | # [2.1](https://github.com/tj-actions/coverage-badge-go/compare/v1.2...v2.1) - (2022-10-06) 906 | 907 | ## 🚀 Features 908 | 909 | - Switch to use a temp directory ([c9c6e73](https://github.com/tj-actions/coverage-badge-go/commit/c9c6e732fca5e411b2a20ec2cb2df0e1e191f89e)) - (Tonye Jack) 910 | 911 | ## ➕ Add 912 | 913 | - Added .github/workflows/codacy-analysis.yml ([06ffb6f](https://github.com/tj-actions/coverage-badge-go/commit/06ffb6fbd0b2dde97afbed68e672996726bf52a8)) - (Tonye Jack) 914 | 915 | ## 🔄 Update 916 | 917 | - Updated .github/workflows/greetings.yml ([df2977c](https://github.com/tj-actions/coverage-badge-go/commit/df2977c319a53f11ee7c90c26a93a6d1730d451c)) - (Tonye Jack) 918 | - Update peter-evans/create-pull-request action to v4.1.3 ([ff48253](https://github.com/tj-actions/coverage-badge-go/commit/ff482533fc7d8c2b0d534244a22b4f853a8a007a)) - (renovate[bot]) 919 | - Update README.md ([741e119](https://github.com/tj-actions/coverage-badge-go/commit/741e1190393a70ed56f6b668e736ec3bb71371d2)) - (Tonye Jack) 920 | - Update README.md ([29f395f](https://github.com/tj-actions/coverage-badge-go/commit/29f395f7e5cc0a9e4f7eec4ade55587bab69ac9c)) - (Tonye Jack) 921 | - Update README.md ([1cdb2b6](https://github.com/tj-actions/coverage-badge-go/commit/1cdb2b6b7617c085b21ac2af08ee62092465ea30)) - (Tonye Jack) 922 | - Update peter-evans/create-pull-request action to v4.1.2 ([ddb6ec4](https://github.com/tj-actions/coverage-badge-go/commit/ddb6ec4fed0c40eaa61816656542e3d1e28a9865)) - (renovate[bot]) 923 | - Update codacy/codacy-analysis-cli-action action to v4.2.0 ([5393026](https://github.com/tj-actions/coverage-badge-go/commit/5393026e07259b4284a94ac37700e7fadf164df3)) - (renovate[bot]) 924 | - Updated .github/workflows/sync-release-version.yml ([19aa4a0](https://github.com/tj-actions/coverage-badge-go/commit/19aa4a0693ddf95c99dd3a935ca28d853165d9fd)) - (Tonye Jack) 925 | - Updated .github/workflows/sync-release-version.yml ([73dc28a](https://github.com/tj-actions/coverage-badge-go/commit/73dc28a3ff63b44e9636b1425a5c44c480f8d44f)) - (Tonye Jack) 926 | - Updated .github/workflows/codacy-analysis.yml ([76b1fa3](https://github.com/tj-actions/coverage-badge-go/commit/76b1fa3c814b992e879b1acd7857daa5b050132c)) - (Tonye Jack) 927 | - Updated .github/workflows/codacy-analysis.yml ([4f81536](https://github.com/tj-actions/coverage-badge-go/commit/4f81536a99284a43208e8338dbc46f5281200cb6)) - (Tonye Jack) 928 | - Updated .github/workflows/greetings.yml ([03c4f4f](https://github.com/tj-actions/coverage-badge-go/commit/03c4f4fea911043ee1107a3b0243b4c9bfea9f4f)) - (Tonye Jack) 929 | - Updated .github/ISSUE_TEMPLATE/bug_report.yaml ([1ef3214](https://github.com/tj-actions/coverage-badge-go/commit/1ef321489b5be15cc375fa185780912bc07a04ac)) - (Tonye Jack) 930 | - Updated .github/ISSUE_TEMPLATE/feature_request.yaml ([7ad9dba](https://github.com/tj-actions/coverage-badge-go/commit/7ad9dba982c93effc4961246c646d36499060d16)) - (Tonye Jack) 931 | - Updated .github/ISSUE_TEMPLATE/bug_report.yaml ([3432a01](https://github.com/tj-actions/coverage-badge-go/commit/3432a01460b5531df2704917339d1afd5478d4be)) - (Tonye Jack) 932 | - Updated .github/workflows/sync-release-version.yml ([cf0d35a](https://github.com/tj-actions/coverage-badge-go/commit/cf0d35a22540ee8fe9f478cc813f2f8b4dc897a8)) - (Tonye Jack) 933 | - Update tj-actions/sync-release-version action to v12 ([e5ac252](https://github.com/tj-actions/coverage-badge-go/commit/e5ac2523ef0742887e78cb76ba0273ea4496e78e)) - (renovate[bot]) 934 | - Update tj-actions/github-changelog-generator action to v1.15 ([055ca0a](https://github.com/tj-actions/coverage-badge-go/commit/055ca0a5e68d5f08dee364a196889e67ec182e4a)) - (renovate[bot]) 935 | - Update tj-actions/verify-changed-files action to v11 ([f51c52e](https://github.com/tj-actions/coverage-badge-go/commit/f51c52e3edec010c600d18ea5f1e4eab0c8413b4)) - (renovate[bot]) 936 | - Update tj-actions/verify-changed-files action to v11 ([63c3170](https://github.com/tj-actions/coverage-badge-go/commit/63c3170683a9594d93750902582afadc5042317c)) - (renovate[bot]) 937 | - Update tj-actions/auto-doc action to v1.4.1 ([6ccb1bd](https://github.com/tj-actions/coverage-badge-go/commit/6ccb1bddb6cdd758254f855fe72fe1fe02068a86)) - (renovate[bot]) 938 | - Update tj-actions/auto-doc action to v1.4.0 ([0b3b616](https://github.com/tj-actions/coverage-badge-go/commit/0b3b616388695d6f70dc82b1b947e571f3700769)) - (renovate[bot]) 939 | - Update action.yml ([8d41129](https://github.com/tj-actions/coverage-badge-go/commit/8d411297814bdc64d3a28515e108b8d60eca7457)) - (Tonye Jack) 940 | - Update tj-actions/verify-changed-files action to v10 ([39fd8a1](https://github.com/tj-actions/coverage-badge-go/commit/39fd8a18ef64b14e55a0e357fd4183b8242c26ac)) - (renovate[bot]) 941 | - Update tj-actions/auto-doc action to v1.3.1 ([7de4bff](https://github.com/tj-actions/coverage-badge-go/commit/7de4bffa31c4abda10dcaea0722007af60432976)) - (renovate[bot]) 942 | - Update tj-actions/auto-doc action to v1.3.0 ([19c4093](https://github.com/tj-actions/coverage-badge-go/commit/19c409307a9aa70bbbdcbd9d65c5e19cf0e614f9)) - (renovate[bot]) 943 | - Update tj-actions/github-changelog-generator action to v1.14 ([b00131d](https://github.com/tj-actions/coverage-badge-go/commit/b00131dfa2c1f0d856faec7b2f512b5e7258949b)) - (renovate[bot]) 944 | - Update tj-actions/verify-changed-files action to v10 ([61a9a09](https://github.com/tj-actions/coverage-badge-go/commit/61a9a0957cc8f51bf464862de37f3e5841cc6f29)) - (renovate[bot]) 945 | - Update tj-actions/verify-changed-files action to v9.2 946 | ([7f336a5](https://github.com/tj-actions/coverage-badge-go/commit/7f336a50122c8c339dfe6a3c8d3b71246414aed3)) - (Renovate Bot) 947 | - Update tj-actions/verify-changed-files action to v9 948 | ([8dfbf65](https://github.com/tj-actions/coverage-badge-go/commit/8dfbf655d58d58be810e175cee721bd3e6830b37)) - (Renovate Bot) 949 | - Update README.md ([409c527](https://github.com/tj-actions/coverage-badge-go/commit/409c52717bf1453e5aa68df41bbd62462980cc6c)) - (Tonye Jack) 950 | - Update tj-actions/auto-doc action to v1.2.15 951 | ([a96e73a](https://github.com/tj-actions/coverage-badge-go/commit/a96e73a691dcf18fe868e8b232c393ead680e8f4)) - (Renovate Bot) 952 | 953 | ## 📝 Other 954 | 955 | - PR [#66](https://github.com/tj-actions/coverage-badge-go/pull/66): ([cd59c60](https://github.com/tj-actions/coverage-badge-go/commit/cd59c60b79f668d1f277577179e55aaea6eaeff1)) - (Tonye Jack) 956 | - PR [#65](https://github.com/tj-actions/coverage-badge-go/pull/65): ([6dc2f28](https://github.com/tj-actions/coverage-badge-go/commit/6dc2f28275fd942c9d0a16ad3ff226b38ee0fc6e)) - (Tonye Jack) 957 | - PR [#56](https://github.com/tj-actions/coverage-badge-go/pull/56): ([fdda460](https://github.com/tj-actions/coverage-badge-go/commit/fdda4601bc141616905260576a11c8d1204d4ae9)) - (Tonye Jack) 958 | 959 | ## ⬆️ Upgrades 960 | 961 | - Upgraded from v1.2 -> v2 962 | ([2160a21](https://github.com/tj-actions/coverage-badge-go/commit/2160a213271289f41ab898d8d781c04f0c374399)) - (jackton1) 963 | - Upgraded from v1.1 -> v1.2 964 | ([5d83f5b](https://github.com/tj-actions/coverage-badge-go/commit/5d83f5b717525f1c846035b920f9e77ab53f5503)) - (jackton1) 965 | 966 | # [1.2](https://github.com/tj-actions/coverage-badge-go/compare/v1.1...v1.2) - (2022-05-12) 967 | 968 | ## ➕ Add 969 | 970 | - Added .github/workflows/greetings.yml ([993ee6b](https://github.com/tj-actions/coverage-badge-go/commit/993ee6b5bd71e624d2b90664304dbb4c6d15545f)) - (Tonye Jack) 971 | 972 | ## 🔄 Update 973 | 974 | - Update pascalgn/automerge-action action to v0.15.3 975 | ([57e0c6b](https://github.com/tj-actions/coverage-badge-go/commit/57e0c6b82e0bf6b0d486c4d8df22a51067f26fb7)) - (Renovate Bot) 976 | - Update cirrus-actions/rebase action to v1.7 977 | ([32b5a9c](https://github.com/tj-actions/coverage-badge-go/commit/32b5a9c7bdd2050f6e4e3a628f52641f322dc3b4)) - (Renovate Bot) 978 | - Update cirrus-actions/rebase action to v1.6 979 | ([a2a6c5b](https://github.com/tj-actions/coverage-badge-go/commit/a2a6c5b29cdb0e80da87a34a3c29a41c23f84c1c)) - (Renovate Bot) 980 | - Update README.md ([01eb333](https://github.com/tj-actions/coverage-badge-go/commit/01eb333e1404c63b50ca053c43a0b7800acb3904)) - (Tonye Jack) 981 | - Update README.md ([1cb7c0a](https://github.com/tj-actions/coverage-badge-go/commit/1cb7c0a88ddfb7266f200d994ca3db33fd77e48d)) - (Tonye Jack) 982 | - Update pascalgn/automerge-action action to v0.15.2 983 | ([abc1a15](https://github.com/tj-actions/coverage-badge-go/commit/abc1a15d158ab0aed2ac0ad17c5bd478fa52b32a)) - (Renovate Bot) 984 | - Update peter-evans/create-pull-request action to v4 985 | ([bd8313b](https://github.com/tj-actions/coverage-badge-go/commit/bd8313b4fef67a551825f80cc8b866cec199f455)) - (Renovate Bot) 986 | - Update test.yml ([4084c19](https://github.com/tj-actions/coverage-badge-go/commit/4084c19896599e6e28dde23f367fd8a2a0bd1ef9)) - (Tonye Jack) 987 | - Update actions/cache action to v3 988 | ([0c9272b](https://github.com/tj-actions/coverage-badge-go/commit/0c9272b7371dcc7dd7ba34a604a6293b7cf6b84e)) - (Renovate Bot) 989 | - Update tj-actions/auto-doc action to v1.2.14 990 | ([a3178e9](https://github.com/tj-actions/coverage-badge-go/commit/a3178e9486fa5e781c3d70c2c6a028c741dc8c63)) - (Renovate Bot) 991 | - Update tj-actions/github-changelog-generator action to v1.13 992 | ([1179fdd](https://github.com/tj-actions/coverage-badge-go/commit/1179fddc4e43e89243f134390eb1b778ae4e6723)) - (Renovate Bot) 993 | - Update tj-actions/verify-changed-files action to v9 994 | ([cb0e13f](https://github.com/tj-actions/coverage-badge-go/commit/cb0e13f2c7b4408f3705a74eec4e58c77cc73cf7)) - (Renovate Bot) 995 | - Update README.md ([0621512](https://github.com/tj-actions/coverage-badge-go/commit/0621512ac7f90eaf798ff3facd1b6c81be9dce6d)) - (Tonye Jack) 996 | - Update actions/checkout action to v3 997 | ([20f166f](https://github.com/tj-actions/coverage-badge-go/commit/20f166f08f666c9ef8c814da14cf25a37f9e4948)) - (Renovate Bot) 998 | - Update actions/setup-go action to v3 999 | ([ef8c9bf](https://github.com/tj-actions/coverage-badge-go/commit/ef8c9bf0f7ab44cf7f871462bb3ef2891a6ad730)) - (Renovate Bot) 1000 | - Update README.md ([dbf1b72](https://github.com/tj-actions/coverage-badge-go/commit/dbf1b728680c859299989ae508dbe6c5d97b6bf3)) - (Tonye Jack) 1001 | - Update tj-actions/github-changelog-generator action to v1.12 1002 | ([5899bf2](https://github.com/tj-actions/coverage-badge-go/commit/5899bf2b1bdf6ef0f0ddf6478903c60003f64a15)) - (Renovate Bot) 1003 | - Update tj-actions/sync-release-version action to v11 1004 | ([62e548d](https://github.com/tj-actions/coverage-badge-go/commit/62e548d970747bd95c6a576aaa8aebc69a17d075)) - (Renovate Bot) 1005 | - Updated .github/workflows/greetings.yml ([739f9a8](https://github.com/tj-actions/coverage-badge-go/commit/739f9a8aa615d738da7249305d070f92ca7e5b45)) - (Tonye Jack) 1006 | - Update README.md ([5549a79](https://github.com/tj-actions/coverage-badge-go/commit/5549a7951c57b01a82762a87aa7a9f6baae13375)) - (Tonye Jack) 1007 | - Update README.md ([feacdb6](https://github.com/tj-actions/coverage-badge-go/commit/feacdb664f5c5d5b919dc19886b4f87a4326da85)) - (Tonye Jack) 1008 | - Update README.md ([e39d3fc](https://github.com/tj-actions/coverage-badge-go/commit/e39d3fca59ac144dda494a370dfcb791896030d8)) - (Tonye Jack) 1009 | - Update tj-actions/auto-doc action to v1.2.13 1010 | ([fa7fa04](https://github.com/tj-actions/coverage-badge-go/commit/fa7fa04ea82b965d2601bde5244c98702e758c6b)) - (Renovate Bot) 1011 | - Updated README.md 1012 | ([f4961cf](https://github.com/tj-actions/coverage-badge-go/commit/f4961cf6137641b420b32bcca11009dd4c7ddcf6)) - (jackton1) 1013 | - Update tj-actions/auto-doc action to v1.2.11 1014 | ([c54538b](https://github.com/tj-actions/coverage-badge-go/commit/c54538b1fd59f5a78309bb0639a3216ef35f5a5d)) - (Renovate Bot) 1015 | - Updated README.md 1016 | ([ce44a18](https://github.com/tj-actions/coverage-badge-go/commit/ce44a18e2f17fe20afae47665f680a58870ee440)) - (jackton1) 1017 | - Update action.yml ([58e328d](https://github.com/tj-actions/coverage-badge-go/commit/58e328d1f6b306252a4f59e14d09e6e72e214560)) - (Tonye Jack) 1018 | - Update README.md ([99624e9](https://github.com/tj-actions/coverage-badge-go/commit/99624e9e2d5a1517c32b7b6b62c6824765d4b214)) - (Tonye Jack) 1019 | - Updated README.md 1020 | ([f06d4ae](https://github.com/tj-actions/coverage-badge-go/commit/f06d4ae536b0a02e5be7516ce3ec1e2b8194bb3c)) - (jackton1) 1021 | - Update README.md ([d47d830](https://github.com/tj-actions/coverage-badge-go/commit/d47d83047d813bea64a09a5638409e9b8da1edb8)) - (Tonye Jack) 1022 | - Update update-readme.yml ([eaad8a8](https://github.com/tj-actions/coverage-badge-go/commit/eaad8a8183ff2e29713c7aac4f8e582d228262cc)) - (Tonye Jack) 1023 | - Update action.yml ([4200e57](https://github.com/tj-actions/coverage-badge-go/commit/4200e57e5bfc7af896d6fd106c3898979727b85c)) - (Tonye Jack) 1024 | 1025 | ## 📝 Other 1026 | 1027 | - PR [#40](https://github.com/tj-actions/coverage-badge-go/pull/40): fix usage of incorrect action id ([8334360](https://github.com/tj-actions/coverage-badge-go/commit/8334360ab5a8fe6000de255a0803b1018a69784c)) - (Tonye Jack) 1028 | - PR [#37](https://github.com/tj-actions/coverage-badge-go/pull/37): README.md ([ba92ffa](https://github.com/tj-actions/coverage-badge-go/commit/ba92ffa8942d922b9e2c2542a794accffe4ce8e3)) - (Tonye Jack) 1029 | - PR [#35](https://github.com/tj-actions/coverage-badge-go/pull/35): README.md ([82cb3d7](https://github.com/tj-actions/coverage-badge-go/commit/82cb3d71242d61a5832feb1ebe79a6ac890dc030)) - (Tonye Jack) 1030 | - PR [#34](https://github.com/tj-actions/coverage-badge-go/pull/34): README.md ([0a76e9f](https://github.com/tj-actions/coverage-badge-go/commit/0a76e9f80a96db0d18946f14526916b3a6d81870)) - (Tonye Jack) 1031 | - PR [#33](https://github.com/tj-actions/coverage-badge-go/pull/33): to v1.1 ([c5b1d88](https://github.com/tj-actions/coverage-badge-go/commit/c5b1d885b513fabf01e68e753d79afce766acaff)) - (Tonye Jack) 1032 | 1033 | ## ⚙️ Miscellaneous Tasks 1034 | 1035 | - Fix usage of incorrect action ID ([f79c076](https://github.com/tj-actions/coverage-badge-go/commit/f79c076aec5015cf6df40e84a2cd8dbcd05f9202)) - (Tonye Jack) 1036 | 1037 | ## ⬆️ Upgrades 1038 | 1039 | - Upgraded from v1 -> v1.1 1040 | ([1a990be](https://github.com/tj-actions/coverage-badge-go/commit/1a990be47ebea842483f92c72476b7a8fc63a333)) - (jackton1) 1041 | 1042 | # [1.1](https://github.com/tj-actions/coverage-badge-go/compare/v1...v1.1) - (2022-01-23) 1043 | 1044 | ## ➕ Add 1045 | 1046 | - Added .github/workflows/auto-merge.yml ([164a5cd](https://github.com/tj-actions/coverage-badge-go/commit/164a5cdf48371a0e8483fb5a335cc630edb9dcf3)) - (Tonye Jack) 1047 | - Add support for all platforms ([2b4a9c2](https://github.com/tj-actions/coverage-badge-go/commit/2b4a9c2d10d20671f6c1377fc8e61672876a30df)) - (Tonye Jack) 1048 | 1049 | ## ➖ Remove 1050 | 1051 | - Remove unused outputs ([d1c54ff](https://github.com/tj-actions/coverage-badge-go/commit/d1c54ff3193316c3677db475100785116692e4ea)) - (Tonye Jack) 1052 | 1053 | ## 🔄 Update 1054 | 1055 | - Update README.md ([caa6acd](https://github.com/tj-actions/coverage-badge-go/commit/caa6acdaa3eebeb47627c6d61d00b9b20e2bb228)) - (Tonye Jack) 1056 | - Update tj-actions/remark action to v2.3 1057 | ([78b35c8](https://github.com/tj-actions/coverage-badge-go/commit/78b35c80c57e6340730e319573ebe3efd3d047ae)) - (Renovate Bot) 1058 | - Update tj-actions/remark action to v2.2 1059 | ([5eeceed](https://github.com/tj-actions/coverage-badge-go/commit/5eeceed2a6b9fcc8c2ace71c89d5053ef52d6947)) - (Renovate Bot) 1060 | - Update tj-actions/remark action to v2 1061 | ([f975e81](https://github.com/tj-actions/coverage-badge-go/commit/f975e817d6da931d9701604f21ec50286f7f851e)) - (Renovate Bot) 1062 | - Update tj-actions/github-changelog-generator action to v1.11 1063 | ([0fd79eb](https://github.com/tj-actions/coverage-badge-go/commit/0fd79eb139d57f9e65f764d239d91eaef93f9e0d)) - (Renovate Bot) 1064 | - Update README.md ([49d3784](https://github.com/tj-actions/coverage-badge-go/commit/49d3784f4509ea6a7c919bf0a4aa7a64d119ffb9)) - (Tonye Jack) 1065 | - Update tj-actions/github-changelog-generator action to v1.10 1066 | ([fade7ba](https://github.com/tj-actions/coverage-badge-go/commit/fade7ba38b8b6b2e94c5361acf6d577f20c3ed73)) - (Renovate Bot) 1067 | - Update tj-actions/verify-changed-files action to v8.8 1068 | ([d988f23](https://github.com/tj-actions/coverage-badge-go/commit/d988f237b247804c7f8a12dfd771a1b4c709390d)) - (Renovate Bot) 1069 | - Update tj-actions/verify-changed-files action to v8.7 1070 | ([5f4aba6](https://github.com/tj-actions/coverage-badge-go/commit/5f4aba67a36894d90ec521efce7261a6f0e892d0)) - (Renovate Bot) 1071 | - Update tj-actions/verify-changed-files action to v8.6 1072 | ([002f1e2](https://github.com/tj-actions/coverage-badge-go/commit/002f1e237e893b4e7c6f33e9605465a71a554481)) - (Renovate Bot) 1073 | - Updated README.md 1074 | ([4f02f58](https://github.com/tj-actions/coverage-badge-go/commit/4f02f58da522922c9e27e48edd321aca5fec6a50)) - (renovate[bot]) 1075 | - Update actions/checkout action to v2.4.0 1076 | ([66007aa](https://github.com/tj-actions/coverage-badge-go/commit/66007aaec3f51693c4256d584605f9026ffef987)) - (Renovate Bot) 1077 | - Update tj-actions/verify-changed-files action to v8.3 1078 | ([87e8eac](https://github.com/tj-actions/coverage-badge-go/commit/87e8eac605403a9990f16f336c8d8ba3df9f1641)) - (Renovate Bot) 1079 | - Update tj-actions/verify-changed-files action to v8.2 1080 | ([c160995](https://github.com/tj-actions/coverage-badge-go/commit/c160995055a1bad89609aaf809060e544412b7ed)) - (Renovate Bot) 1081 | - Update README.md ([31d6c16](https://github.com/tj-actions/coverage-badge-go/commit/31d6c1612bd49d09e786b62d488cfa4ff2e944a3)) - (Tonye Jack) 1082 | - Update README.md ([1bfb447](https://github.com/tj-actions/coverage-badge-go/commit/1bfb44736965da02748f136a97fa9dd71d4e914a)) - (Tonye Jack) 1083 | - Update README.md ([32b8337](https://github.com/tj-actions/coverage-badge-go/commit/32b83372a5b8b2f6b89e8a615aca54539edfadeb)) - (Tonye Jack) 1084 | - Updated .github/ISSUE_TEMPLATE/feature_request.yaml ([77d78d5](https://github.com/tj-actions/coverage-badge-go/commit/77d78d51c1b938e1b32a2980eb6fe91f01140a10)) - (Tonye Jack) 1085 | - Updated .github/ISSUE_TEMPLATE/bug_report.yaml ([d4e64a5](https://github.com/tj-actions/coverage-badge-go/commit/d4e64a5af400542eabf2178610103f3121c02d1a)) - (Tonye Jack) 1086 | - Update test.yml ([cc4c0fb](https://github.com/tj-actions/coverage-badge-go/commit/cc4c0fbccb00d26d2f7a48c3675d98e9174eac13)) - (Tonye Jack) 1087 | - Update README.md ([4fa0dd5](https://github.com/tj-actions/coverage-badge-go/commit/4fa0dd55315e5c81b42652c99167083458c6b210)) - (Tonye Jack) 1088 | - Update test.yml ([9b5653e](https://github.com/tj-actions/coverage-badge-go/commit/9b5653e5256bdb3617feba6ea23bac198b60bb84)) - (Tonye Jack) 1089 | - Updated README.md 1090 | ([2cf28e1](https://github.com/tj-actions/coverage-badge-go/commit/2cf28e1412eb6d58fdebb6b6ba0eb0a48a6a38fa)) - (Tonye Jack) 1091 | - Update README.md ([5a61f57](https://github.com/tj-actions/coverage-badge-go/commit/5a61f575ffc0e2aecd97077b5d211c753df3f135)) - (Tonye Jack) 1092 | - Update test.yml ([62d9c3d](https://github.com/tj-actions/coverage-badge-go/commit/62d9c3d40b0bf32c2a20199db8ac93332c6f5a94)) - (Tonye Jack) 1093 | - Update action.yml ([a185636](https://github.com/tj-actions/coverage-badge-go/commit/a1856364a5185e6a59af2a994e0e78eaba691f92)) - (Tonye Jack) 1094 | - Update action.yml ([3d56847](https://github.com/tj-actions/coverage-badge-go/commit/3d56847c47465a6208f0d7e5346794e3a1676c1c)) - (Tonye Jack) 1095 | - Update test.yml ([2a2e16b](https://github.com/tj-actions/coverage-badge-go/commit/2a2e16bc0ec99338e8a7eaed016a5fb8169c98ab)) - (Tonye Jack) 1096 | - Update test.yml ([6e0eca0](https://github.com/tj-actions/coverage-badge-go/commit/6e0eca073d83ea938661e13d8385c5ce341cf883)) - (Tonye Jack) 1097 | - Update README.md ([f0a0af4](https://github.com/tj-actions/coverage-badge-go/commit/f0a0af4b9131a9d4a9b51ed50bf24ecdb8306e7d)) - (Tonye Jack) 1098 | - Update README.md ([59c0029](https://github.com/tj-actions/coverage-badge-go/commit/59c0029770c53fab5fc28f2994c2ca5232f90368)) - (Tonye Jack) 1099 | - Update README.md ([1fe3a3e](https://github.com/tj-actions/coverage-badge-go/commit/1fe3a3ee1cc1dae858e9c6be951e163be494bf05)) - (Tonye Jack) 1100 | 1101 | ## 📝 Other 1102 | 1103 | - PR [#32](https://github.com/tj-actions/coverage-badge-go/pull/32): unused outputs ([e6fca87](https://github.com/tj-actions/coverage-badge-go/commit/e6fca876a51b4056ee48d450f7da27400321496b)) - (Tonye Jack) 1104 | - PR [#23](https://github.com/tj-actions/coverage-badge-go/pull/23): ([63aafdc](https://github.com/tj-actions/coverage-badge-go/commit/63aafdca3ecc2541d12c4a354c89cdb6fe7750c5)) - (Tonye Jack) 1105 | - PR [#17](https://github.com/tj-actions/coverage-badge-go/pull/17): support for all platforms ([4c1537d](https://github.com/tj-actions/coverage-badge-go/commit/4c1537d3c9979eaa7e683a1a6b8dcb571cb067e1)) - (Tonye Jack) 1106 | - Merge branch 'main' into update/test 1107 | ([593b426](https://github.com/tj-actions/coverage-badge-go/commit/593b426bb2d3a65f5b180ecf1c4365de363022d1)) - (Tonye Jack) 1108 | - PR [#16](https://github.com/tj-actions/coverage-badge-go/pull/16): ([f8e2a05](https://github.com/tj-actions/coverage-badge-go/commit/f8e2a05ce46293f70cd4ac087b33c263c0222196)) - (Tonye Jack) 1109 | 1110 | ## ⬆️ Upgrades 1111 | 1112 | - Upgraded from v1 -> v1 1113 | ([f9db7c9](https://github.com/tj-actions/coverage-badge-go/commit/f9db7c926a1ef9fe21bf7eb8bcf3d92376017f71)) - (jackton1) 1114 | 1115 | # [1](https://github.com/tj-actions/coverage-badge-go/tree/v1) - (2021-10-16) 1116 | 1117 | ## 🎉 Initial Commit 1118 | 1119 | - Initial commit. 1120 | ([0117881](https://github.com/tj-actions/coverage-badge-go/commit/0117881900c6b8476af652a25334b42aa6e5ea67)) - (Tonye Jack) 1121 | 1122 | ## 🔄 Update 1123 | 1124 | - Update README.md ([5779f88](https://github.com/tj-actions/coverage-badge-go/commit/5779f88ebf037e06cd56d9312c9aeff696aba8ae)) - (Tonye Jack) 1125 | - Update action.yml ([d236946](https://github.com/tj-actions/coverage-badge-go/commit/d236946f26240a575c53e2201b7b8da6583822a3)) - (Tonye Jack) 1126 | - Update README.md ([55ad023](https://github.com/tj-actions/coverage-badge-go/commit/55ad023eabd5227469bd4a5cde15ae7d4eba46ac)) - (Tonye Jack) 1127 | - Update action.yml ([ec859c1](https://github.com/tj-actions/coverage-badge-go/commit/ec859c1fef797c6446aa2946b6dcdb1acc520f9c)) - (Tonye Jack) 1128 | - Update README.md ([604a72a](https://github.com/tj-actions/coverage-badge-go/commit/604a72a0c306b5dd53fee9125549bdcb02527256)) - (Tonye Jack) 1129 | - Update README.md ([7835897](https://github.com/tj-actions/coverage-badge-go/commit/78358975a776cee6be060567e89dc94b0dde5427)) - (Tonye Jack) 1130 | - Update README.md ([70adfe5](https://github.com/tj-actions/coverage-badge-go/commit/70adfe54f52a76dd15828ece05f38486a48bd762)) - (Tonye Jack) 1131 | - Update README.md ([4a905be](https://github.com/tj-actions/coverage-badge-go/commit/4a905be4b59812eebe3bad7826c1fe4fd7d1f1ad)) - (Tonye Jack) 1132 | - Updated action. 1133 | ([8583739](https://github.com/tj-actions/coverage-badge-go/commit/85837395c38ddc25c90b3be227c1835c892eb7ad)) - (Tonye Jack) 1134 | - Updated action. 1135 | ([b5ed190](https://github.com/tj-actions/coverage-badge-go/commit/b5ed190a104e1b0df2d4ab0cfee2a1aa4de2ef42)) - (Tonye Jack) 1136 | - Updated action. 1137 | ([5ddba74](https://github.com/tj-actions/coverage-badge-go/commit/5ddba745a280b59b4ee2588cf36d37929330ec99)) - (Tonye Jack) 1138 | - Updated action. 1139 | ([356fc39](https://github.com/tj-actions/coverage-badge-go/commit/356fc39aadbcf738f2be1f9adab0c3e91e481b56)) - (Tonye Jack) 1140 | - Updated action. 1141 | ([998ef70](https://github.com/tj-actions/coverage-badge-go/commit/998ef70dc2db71d629b2519a1b44724996b3151a)) - (Tonye Jack) 1142 | - Updated action. 1143 | ([ef30223](https://github.com/tj-actions/coverage-badge-go/commit/ef3022375afef2159b609531a7a34500634b5c87)) - (Tonye Jack) 1144 | - Updated action 1145 | ([4189541](https://github.com/tj-actions/coverage-badge-go/commit/418954152200653233c80a9f7c74e05494c91200)) - (Tonye Jack) 1146 | - Updated action 1147 | ([42ad109](https://github.com/tj-actions/coverage-badge-go/commit/42ad1097d6f193e3e2fd9fff3a106553b9dde79f)) - (Tonye Jack) 1148 | - Updated README.md 1149 | ([18149d5](https://github.com/tj-actions/coverage-badge-go/commit/18149d5f9a92d090d4d0e4b365366497e6cc2ae9)) - (jackton1) 1150 | - Updated README.md 1151 | ([e9f8f73](https://github.com/tj-actions/coverage-badge-go/commit/e9f8f739fdd14328a1f3b0d54659e2fe19f605e2)) - (jackton1) 1152 | - Update action.yml ([e8add2a](https://github.com/tj-actions/coverage-badge-go/commit/e8add2a79f2029274032cb31afe36bbce0b4c275)) - (Tonye Jack) 1153 | - Update action.yml ([b184375](https://github.com/tj-actions/coverage-badge-go/commit/b18437564a3ccc1848b5a41c85186552569dccfa)) - (Tonye Jack) 1154 | - Update README.md ([5dd20f3](https://github.com/tj-actions/coverage-badge-go/commit/5dd20f3798af8eacb7dbc6fe94def6698389420d)) - (Tonye Jack) 1155 | - Update README.md ([0897eab](https://github.com/tj-actions/coverage-badge-go/commit/0897eab83bad3dec29aa451c437d060179563441)) - (Tonye Jack) 1156 | - Update sync-release-version.yml ([3ca4886](https://github.com/tj-actions/coverage-badge-go/commit/3ca4886ce1827fede078d75c9ec11e7127d58558)) - (Tonye Jack) 1157 | - Update Makefile ([208fb87](https://github.com/tj-actions/coverage-badge-go/commit/208fb87c4159ae4d0b7a6c128a51ac390ead9655)) - (Tonye Jack) 1158 | - Update README.md ([5fb9e0b](https://github.com/tj-actions/coverage-badge-go/commit/5fb9e0bb54e709974ed9071b83b9718d50ea4ce0)) - (Tonye Jack) 1159 | - Update README.md ([8911409](https://github.com/tj-actions/coverage-badge-go/commit/891140968948d807fcf8200e1a404e521af57fd8)) - (Tonye Jack) 1160 | - Update README.md ([8f54064](https://github.com/tj-actions/coverage-badge-go/commit/8f540644ef181c595eeaaac7cb7914204d2c53b3)) - (Tonye Jack) 1161 | - Update actions/checkout action to v2.3.5 1162 | ([b15f037](https://github.com/tj-actions/coverage-badge-go/commit/b15f0374300829f3a878ea2ad9984527af6e69c5)) - (Renovate Bot) 1163 | - Update cirrus-actions/rebase action to v1.5 1164 | ([64cc30b](https://github.com/tj-actions/coverage-badge-go/commit/64cc30bf5c3435b5bbd2fa5a297418ede3940c76)) - (Renovate Bot) 1165 | - Update tj-actions/github-changelog-generator action to v1.8 1166 | ([e66c336](https://github.com/tj-actions/coverage-badge-go/commit/e66c336b63fa07611fa6361aa98ab43806305ac2)) - (Renovate Bot) 1167 | - Updated renovate.json ([d971cfb](https://github.com/tj-actions/coverage-badge-go/commit/d971cfbdc984e57a48ebe1038f176f32b7467000)) - (Tonye Jack) 1168 | - Updated renovate.json ([1d5f8be](https://github.com/tj-actions/coverage-badge-go/commit/1d5f8be01f9277ffda87b55436a8fddf490448be)) - (Tonye Jack) 1169 | - Update README.md ([6f1665c](https://github.com/tj-actions/coverage-badge-go/commit/6f1665ce4892054fcb182a5cf7187fd3c21b3fb7)) - (Tonye Jack) 1170 | - Update tj-actions/remark action to v1.7 1171 | ([1d8341f](https://github.com/tj-actions/coverage-badge-go/commit/1d8341f38776f7d2fe91730c2ecf4fd49a265392)) - (Renovate Bot) 1172 | - Update tj-actions/verify-changed-files action to v8 1173 | ([739d1e6](https://github.com/tj-actions/coverage-badge-go/commit/739d1e605cd0eb2d0f20c05f3651b10679407c06)) - (Renovate Bot) 1174 | - Updated README.md 1175 | ([09cdc36](https://github.com/tj-actions/coverage-badge-go/commit/09cdc360238bcb8bf69e0dc87c7a1b9f8e49d30c)) - (jackton1) 1176 | - Updated action 1177 | ([b4c0659](https://github.com/tj-actions/coverage-badge-go/commit/b4c0659f10cf6861541c3732469dfaf1cce49d3f)) - (Tonye Jack) 1178 | - Updated action 1179 | ([19fbc6a](https://github.com/tj-actions/coverage-badge-go/commit/19fbc6a3fc3b749104039746b39a160a37b529a6)) - (Tonye Jack) 1180 | - Updated action 1181 | ([64ea676](https://github.com/tj-actions/coverage-badge-go/commit/64ea67627d7344845927f0e18a43cdef378abe7e)) - (Tonye Jack) 1182 | - Updated branch name. 1183 | ([598f6c1](https://github.com/tj-actions/coverage-badge-go/commit/598f6c10c101dbfaaa35913635178a2e0e32bfdc)) - (Tonye Jack) 1184 | - Updated branch name. 1185 | ([2037213](https://github.com/tj-actions/coverage-badge-go/commit/2037213f25577cd47ba188813617e79e6b452ef8)) - (Tonye Jack) 1186 | - Updated action 1187 | ([1a2b814](https://github.com/tj-actions/coverage-badge-go/commit/1a2b8142ede930d9b6cdf048ad5c3acd9a9824ca)) - (Tonye Jack) 1188 | - Updated action 1189 | ([ab66872](https://github.com/tj-actions/coverage-badge-go/commit/ab66872a1805205a4a89dd656cf0aef40dba3970)) - (Tonye Jack) 1190 | - Updated action. 1191 | ([78e48b4](https://github.com/tj-actions/coverage-badge-go/commit/78e48b406fabd2e91defdb9fe822b6409659e5b7)) - (Tonye Jack) 1192 | - Updated action. 1193 | ([62574b3](https://github.com/tj-actions/coverage-badge-go/commit/62574b32c3125a697bbf8fe42fd63608e3e7838a)) - (Tonye Jack) 1194 | - Updated action. 1195 | ([29809d3](https://github.com/tj-actions/coverage-badge-go/commit/29809d3e9ef52bbd7c6a69f976e61e21501c7fd4)) - (Tonye Jack) 1196 | - Updated action. 1197 | ([84fd06d](https://github.com/tj-actions/coverage-badge-go/commit/84fd06dc64f1ad4a931c212eaf9db98f80cd34a4)) - (Tonye Jack) 1198 | - Update README.md ([96a27fc](https://github.com/tj-actions/coverage-badge-go/commit/96a27fc560ed0d0d10463cada91d9885919db0be)) - (Tonye Jack) 1199 | - Updated README.md 1200 | ([ebb96f2](https://github.com/tj-actions/coverage-badge-go/commit/ebb96f2d664b874bebd13f8bee24039849ea0698)) - (github-actions[bot]) 1201 | - Updated test. 1202 | ([4f329a7](https://github.com/tj-actions/coverage-badge-go/commit/4f329a793b847028d22dffd1fc775f26c392f410)) - (Tonye Jack) 1203 | - Updated test. 1204 | ([232d524](https://github.com/tj-actions/coverage-badge-go/commit/232d5246ea166f7e2bc36d7daf20bc0ca5f1c873)) - (Tonye Jack) 1205 | - Update README.md ([91a2f52](https://github.com/tj-actions/coverage-badge-go/commit/91a2f52ef1ded6e9458e4653e8d784aa13826db3)) - (Tonye Jack) 1206 | 1207 | ## 👷 CI/CD 1208 | 1209 | - PR [#2](https://github.com/tj-actions/coverage-badge-go/pull/2): cirrus-actions/rebase action to v1.5 ([a07dd6c](https://github.com/tj-actions/coverage-badge-go/commit/a07dd6c16c5761c8e76632001d605ab94c408148)) - (Tonye Jack) 1210 | 1211 | ## 📝 Other 1212 | 1213 | - PR [#14](https://github.com/tj-actions/coverage-badge-go/pull/14): updated coverage badge ([6289111](https://github.com/tj-actions/coverage-badge-go/commit/62891110c5ef48bf57865138abe925978b19952d)) - (Tonye Jack) 1214 | - PR [#10](https://github.com/tj-actions/coverage-badge-go/pull/10): updated coverage Badge ([5fca284](https://github.com/tj-actions/coverage-badge-go/commit/5fca2847d1ed08c13ccf7023550d93e19b8f9254)) - (Tonye Jack) 1215 | - PR [#11](https://github.com/tj-actions/coverage-badge-go/pull/11): README.md ([8ad1ee3](https://github.com/tj-actions/coverage-badge-go/commit/8ad1ee3ce74cef2b88c676c5856ce5a7c4c40ab2)) - (Tonye Jack) 1216 | - PR [#9](https://github.com/tj-actions/coverage-badge-go/pull/9): to v1 ([b400d36](https://github.com/tj-actions/coverage-badge-go/commit/b400d365961f698668c008d1bd7f33d9bd052187)) - (Tonye Jack) 1217 | - PR [#1](https://github.com/tj-actions/coverage-badge-go/pull/1): actions/checkout action to v2.3.5 ([b3016b7](https://github.com/tj-actions/coverage-badge-go/commit/b3016b72281f8dd9074936ab97b7a5f37b3fe8e4)) - (Tonye Jack) 1218 | - PR [#3](https://github.com/tj-actions/coverage-badge-go/pull/3): tj-actions/github-changelog-generator action to v1.8 ([aef4bb2](https://github.com/tj-actions/coverage-badge-go/commit/aef4bb2127e743fe6e39d9335c70f5f7fd232d7e)) - (Tonye Jack) 1219 | - PR [#4](https://github.com/tj-actions/coverage-badge-go/pull/4): tj-actions/remark action to v1.7 ([70b7ed7](https://github.com/tj-actions/coverage-badge-go/commit/70b7ed77e3975db42095216c6423eb6a9afd1be1)) - (Tonye Jack) 1220 | - PR [#5](https://github.com/tj-actions/coverage-badge-go/pull/5): tj-actions/verify-changed-files action to v8 ([535c22e](https://github.com/tj-actions/coverage-badge-go/commit/535c22e9a8ad4ee123e93770f5e7291b1817dcd3)) - (Tonye Jack) 1221 | - PR [#7](https://github.com/tj-actions/coverage-badge-go/pull/7): README.md ([f6543c3](https://github.com/tj-actions/coverage-badge-go/commit/f6543c31dcb5527412ce143cbf31d3761f6e639e)) - (Tonye Jack) 1222 | 1223 | ## ⚙️ Miscellaneous Tasks 1224 | 1225 | - Updated coverage badge ([7e40ca6](https://github.com/tj-actions/coverage-badge-go/commit/7e40ca6fa4ad6aa37363db7b455a8ded61ec3778)) - (jackton1) 1226 | 1227 | ## ⬆️ Upgrades 1228 | 1229 | - Upgraded from v1 -> v1 1230 | ([0c37c2b](https://github.com/tj-actions/coverage-badge-go/commit/0c37c2b652169b907d0eacc67c240367417b602a)) - (jackton1) 1231 | 1232 | 1233 | --------------------------------------------------------------------------------