diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 96d200109..3c1c1b307 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -33,7 +33,7 @@ jobs: submodules: true - name: Install FSF toolchain - uses: alire-project/alr-install@v1 + uses: alire-project/alr-install@v2 with: crates: gnat_native gprbuild prefix: alire_prefix diff --git a/.github/workflows/spellcheck.yml b/.github/workflows/spellcheck.yml index f9208695b..37bf251fc 100644 --- a/.github/workflows/spellcheck.yml +++ b/.github/workflows/spellcheck.yml @@ -8,11 +8,12 @@ jobs: spellcheck: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 - - name: misspell + - uses: actions/checkout@v4 + - name: Run misspell uses: reviewdog/action-misspell@v1 with: github_token: ${{ secrets.github_token }} - reporter: github-pr-review + reporter: github-pr-annotations locale: "US" - exclude: '*.lock' \ No newline at end of file + pattern: '*.md' + fail_on_error: true