GitHubGithub GH-600 Agentic AI Developer Certification ·EN ·Updated 15 Jul 2026

A repository uses three agent jobs: planner, implementer, and reviewer. The team wants a final audit job to run after all three jobs, collect the audit files, and publish a retained artifact that reviewers can download from the workflow run. Which option completes the workflow?

name: multi-agent-audit

on:
  pull_request:
    branches:
      - main

permissions:
  contents: read
  actions: read
  pull-requests: read

jobs:
  planner:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - run: |
           mkdir -p audit
           echo "planner decision log" > audit/planner.md
      - uses: actions/upload-artifact@v4
        with:
           name: planner-audit
           path: audit/planner.md

   implementer:
     runs-on: ubuntu-latest
     steps:
       - uses: actions/checkout@v4
       - run: |
            mkdir -p audit
            echo '{"files_changed":["src/api.ts"]}' > audit/implementer.json
       - uses: actions/upload-artifact@v4
         with:
            name: implementer-audit
            path: audit/implementer.json

   reviewer:
     runs-on: ubuntu-latest
     steps:
       - uses: actions/checkout@v4
       - run: |
            mkdir -p audit
            echo "review findings" > audit/reviewer.md
       - uses: actions/upload-artifact@v4
         with:
            name: reviewer-audit
            path: audit/reviewer.md

   audit_bundle:
     (Missing value 1)
     runs-on: ubuntu-latest
     (Missing value 2)
     steps:
       - uses: actions/download-artifact@v4
         with:
            path: audit/raw

         - name: Build audit index
           run: |
             find audit/raw -type f | sort > audit/index.txt

         - name: Publish audit bundle
           (Missing value 3)
           with:
             name: multi-agent-audit-${{ github.run_id }}
             path: audit/
             retention-days: 30

Choose an answer

Tap an option to check your answer.

Pass your exam — without the endless answer hunt

Get every verified question and explanation for this exam in one place, and save hours of prep. 1,000+ certifications · 20+ languages · free to start.

Pass your exam faster No card needed
✓ Verified by ExamRoll editorial · Updated 15 July 2026
All-in-one access

One subscription. Every exam.

Every plan unlocks unlimited answer search, practice tests, AI explanations, and the full resource library — in 20+ languages.

Monthly
24.87
Just €0.83/day
Everything included:
  • Unlimited answer search
  • Unlimited practice tests
  • AI-powered explanations
  • Full resource library
  • 20+ languages
  • Weekly content updates
  • Rewards & referrals
  • Priority support
Start free trial

No credit card required*

Best value
12 months
179.87
Just €0.49/daySave 40%
Everything included:
  • Unlimited answer search
  • Unlimited practice tests
  • AI-powered explanations
  • Full resource library
  • 20+ languages
  • Weekly content updates
  • Rewards & referrals
  • Priority support
Start free trial

No credit card required*

✓ Free plan included · ✓ Cancel anytime · ✓ All plans unlock the full product