diff options
| author | 2024-04-27 18:49:37 +0100 | |
|---|---|---|
| committer | 2024-04-27 19:27:24 +0100 | |
| commit | ddcd8a5e58c7b55bf5e8efc8b7391bada79b9056 (patch) | |
| tree | 7a2df52d818ddc5781d703c32fbae0b6c350c52e | |
| parent | Use a read-only token to generate the DNS plan (diff) | |
Update all versions in the dry run workflow
| -rw-r--r-- | .github/workflows/dns-dry-run.yaml | 12 | 
1 files changed, 6 insertions, 6 deletions
| diff --git a/.github/workflows/dns-dry-run.yaml b/.github/workflows/dns-dry-run.yaml index e2dc13a..4861d57 100644 --- a/.github/workflows/dns-dry-run.yaml +++ b/.github/workflows/dns-dry-run.yaml @@ -5,15 +5,15 @@ on:  jobs:    octodns-sync:      name: Run `octodns-sync` with production.yaml -    runs-on: ubuntu-20.04 +    runs-on: ubuntu-latest      defaults:        run:          working-directory: ./dns      outputs:        plan: ${{ steps.generate-plan.outputs.plan }}      steps: -      - uses: actions/checkout@v2 -      - uses: actions/setup-python@v2 +      - uses: actions/checkout@v4 +      - uses: actions/setup-python@v5          with:            python-version: '3.12'        - run: pip install -r requirements.txt @@ -27,10 +27,10 @@ jobs:    add-pr-comment:      name: Add `octodns-sync` plan to comment      needs: [octodns-sync] -    runs-on: ubuntu-20.04 +    runs-on: ubuntu-latest      steps:        - name: Find previous comment, if present -        uses: peter-evans/[email protected] +        uses: peter-evans/find-comment@v3          id: fc          with:            issue-number: ${{ github.event.pull_request.number }} @@ -38,7 +38,7 @@ jobs:            body-includes: "OctoDNS Plan for "        - name: Create or update comment          id: prcomment -        uses: peter-evans/[email protected] +        uses: peter-evans/create-or-update-comment@v4          with:            issue-number: ${{ github.event.pull_request.number }}            comment-id: ${{ steps.fc.outputs.comment-id }} | 
