From 6d52e6ded2952760f0c339c81715d8d853f28114 Mon Sep 17 00:00:00 2001 From: "Andrew W. Harn" Date: Tue, 30 Jul 2024 15:24:47 -0400 Subject: [PATCH 1/2] Replace comment workflow and update CodeQL Signed-off-by: Andrew W. Harn --- .github/workflows/auto-comment.yml | 2 +- .github/workflows/codeql.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/auto-comment.yml b/.github/workflows/auto-comment.yml index 78c09d21..671fe0d7 100644 --- a/.github/workflows/auto-comment.yml +++ b/.github/workflows/auto-comment.yml @@ -12,7 +12,7 @@ jobs: - uses: actions/checkout@v4 - name: Process Label Action - uses: hramos/respond-to-issue-based-on-label@v2 + uses: dessant/label-actions@v4 with: repo-token: ${{ secrets.GITHUB_TOKEN }} configuration-path: '.github/label-actions.yml' diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 4355bc9c..bc7fe3bd 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -37,10 +37,10 @@ jobs: fetch-depth: 0 - name: Initialize CodeQL - uses: github/codeql-action/init@v2 + uses: github/codeql-action/init@v3 with: languages: ${{ matrix.language }} config-file: ./.github/resources/codeql-config.yml - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v2 + uses: github/codeql-action/analyze@v3 From cc6721c4e0e120d4643e0a54bb391204f55cb9cd Mon Sep 17 00:00:00 2001 From: "Andrew W. Harn" Date: Tue, 30 Jul 2024 15:35:25 -0400 Subject: [PATCH 2/2] Update input names Signed-off-by: Andrew W. Harn --- .github/workflows/auto-comment.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/auto-comment.yml b/.github/workflows/auto-comment.yml index 671fe0d7..ad4e1974 100644 --- a/.github/workflows/auto-comment.yml +++ b/.github/workflows/auto-comment.yml @@ -14,5 +14,5 @@ jobs: - name: Process Label Action uses: dessant/label-actions@v4 with: - repo-token: ${{ secrets.GITHUB_TOKEN }} - configuration-path: '.github/label-actions.yml' + github-token: ${{ secrets.GITHUB_TOKEN }} + config-path: '.github/label-actions.yml'