AdamOswald / tes

2 stars 1 forks source link

Update actions/deploy-pages action to v2 #127

Closed renovate[bot] closed 1 year ago

renovate[bot] commented 1 year ago

Mend Renovate

This PR contains the following updates:

Package Type Update Change
actions/deploy-pages action major v1 -> v2

Release Notes

actions/deploy-pages ### [`v2`](https://togithub.com/actions/deploy-pages/compare/v1...v2) [Compare Source](https://togithub.com/actions/deploy-pages/compare/v1...v2)

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

â™» Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.



This PR has been generated by Mend Renovate. View repository job log here.

performance-testing-bot[bot] commented 1 year ago

Unable to locate .performanceTestingBot config file

viezly[bot] commented 1 year ago

Pull request by bot. No need to analyze

difflens[bot] commented 1 year ago

View changes in DiffLens

guide-bot[bot] commented 1 year ago

Thanks for opening this Pull Request! We need you to:

  1. Fill out the description.

    Action: Edit description and replace <!- ... --> with actual values.

  2. Complete the activities.

    Action: Complete If you want to rebase/retry this PR, check this box

    If an activity is not applicable, use '\~activity description\~' to mark it not applicable.

senior-dev-bot[bot] commented 1 year ago

Senior-Dev Bot :robot:

Diff 1:

Updating to the latest version of the GitHub Pages deployment action is a good practice to ensure the latest bug fixes and features are utilized. Consider adding some error handling and logging to the deployment step to provide better visibility in case of issues during the deployment process.

      - name: Deploy to GitHub Pages
         id: deployment
         uses: actions/deploy-pages@v2
         with:
           access-token: ${{ secrets.GITHUB_TOKEN }}
         env:
           JEKYLL_ENV: production
      - name: Deployment Success
        if: success()
        run: echo 'Deployment succeeded!'
      - name: Deployment Failure
        if: failure()
        run: echo 'Deployment failed!'