diff --git a/CHANGELOG.md b/CHANGELOG.md index af45ddd2..231d942c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), - Add your updates here :) +## [1.3.1] 2023-12-18 + +- Fix GitHub Action + ## [1.3.0] 2023-12-18 - Build & upload Docker image nvuillam/github-dependents-info on docker hub & ghcr.io diff --git a/README.md b/README.md index 867d325d..4045172a 100644 --- a/README.md +++ b/README.md @@ -317,7 +317,7 @@ jobs: # Collect data & generate markdown - name: GitHub Dependents Info - uses: nvuillam/github-dependents-info@1.3.0 + uses: nvuillam/github-dependents-info@v1.3.1 # See documentation for variables details: https://github.com/nvuillam/github-dependents-info?tab=readme-ov-file#%EF%B8%8F-usage with: repo: ${{ github.repository }} diff --git a/action.yml b/action.yml index 6c8fd34a..314594aa 100644 --- a/action.yml +++ b/action.yml @@ -28,7 +28,7 @@ inputs: runs: using: "docker" - image: "docker://nvuillam/github-dependents-info:1.3.0" + image: "docker://nvuillam/github-dependents-info:v1.3.1" args: - --repo - ${{ inputs.repo }} diff --git a/pyproject.toml b/pyproject.toml index b3763b58..2fbbdaac 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "github-dependents-info" -version = "1.3.0" +version = "1.3.1" description = "Collect information about dependencies between a github repo and other repositories. Results available in JSON, markdown and badges." readme = "README.md" authors = ["nvuillam "]