Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 1.13 KB

File metadata and controls

26 lines (20 loc) · 1.13 KB

⚠️ New Maester action available

The Maester action maester365/maester@main will replaced by a new action at maester365/maester-action. Moving to a new action allows us to better document the action in the marketplace and proper versioning of the action.

Note

For now, the old action maester365/maester@main will continue to work (and in fact it will call the new action under the hood), but it will not get any new features or fixes.

Migrate to new action

In your workflow file, replace the following bit:

- name: Run Maester 🔥
  uses: maester365/maester@main # this line needs to change
  with:
    # your parameters here

- name: Run Maester 🔥
  uses: maester365/maester-action@v1.0.1 # to this line
  with:
    # your parameters here
    include_private_tests: true # this will checkout the current repository and was the default behavior of the old action
    # if you used install_prerelease: true you should add this line and remove the old one
    maester_version: preview # pick the exact version of the Maester module you want to use or 'latest' or 'preview'