This is an automated email from the ASF dual-hosted git repository. pkarwasz pushed a commit to branch feat/dependabot-add-changelog3 in repository https://gitbox.apache.org/repos/asf/logging-parent.git
commit 0f027f8080137d6ef88e9d60aec9bb1de344a054 Author: Piotr P. Karwasz <[email protected]> AuthorDate: Tue Jun 24 12:03:12 2025 +0200 fix: `env.RUNNER_TEMP` does not exist --- .github/workflows/process-dependabot-reusable.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/process-dependabot-reusable.yaml b/.github/workflows/process-dependabot-reusable.yaml index e20f25e..85aaaff 100644 --- a/.github/workflows/process-dependabot-reusable.yaml +++ b/.github/workflows/process-dependabot-reusable.yaml @@ -60,14 +60,14 @@ jobs: with: github-token: ${{ github.token }} name: dependabot-metadata - path: ${{ env.RUNNER_TEMP }}/dependabot-metadata + path: ${{ runner.temp }}/dependabot-metadata run-id: ${{ inputs.analyze-workflow-run-id }} - name: Process Dependabot metadata shell: bash run: | # Extract the pull request metadata from the downloaded artifact - path="${{ env.RUNNER_TEMP }}/dependabot-metadata" + path="$RUNNER_TEMP/dependabot-metadata" if [[ ! -f "$path/pull_request.json" ]]; then echo "Pull request metadata not found at $path/pull_request.json" exit 1
