From 244b9c6f54b1be40df219c08a8692967f2ec20dd Mon Sep 17 00:00:00 2001 From: Jason Meridth Date: Tue, 24 Feb 2026 07:08:22 -0600 Subject: [PATCH 1/2] fix: Update action.yml to use v2 image Unfortunately the tag in action.yml is hardcoded currently. Will automate soon. --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 43b34b5..8c67b8c 100644 --- a/action.yml +++ b/action.yml @@ -4,7 +4,7 @@ author: "github" description: "A GitHub Action to report out contributors and contributions to a repository or organization" runs: using: "docker" - image: "docker://ghcr.io/github-community-projects/contributors:v1" + image: "docker://ghcr.io/github-community-projects/contributors:v2" branding: icon: "users" color: "green" From 7d53d6723f7de94ef30f0b5daf2ed95ec9f8b87d Mon Sep 17 00:00:00 2001 From: jmeridth Date: Tue, 24 Feb 2026 07:38:50 -0600 Subject: [PATCH 2/2] fix: update README to use new major version tag Signed-off-by: jmeridth --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6426370..dbba364 100644 --- a/README.md +++ b/README.md @@ -149,7 +149,7 @@ jobs: echo "END_DATE=$end_date" >> "$GITHUB_ENV" - name: Run contributor action - uses: github-community-projects/contributors@v1 + uses: github-community-projects/contributors@v2 env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} START_DATE: ${{ env.START_DATE }} @@ -202,7 +202,7 @@ jobs: echo "END_DATE=$end_date" >> "$GITHUB_ENV" - name: Run contributor action - uses: github-community-projects/contributors@v1 + uses: github-community-projects/contributors@v2 env: GH_APP_ID: ${{ secrets.GH_APP_ID }} GH_APP_INSTALLATION_ID: ${{ secrets.GH_APP_INSTALLATION_ID }}