From 98b1fa299d4962ef2e0e517aba886188dc8fe705 Mon Sep 17 00:00:00 2001 From: Dan Bonachea Date: Tue, 17 Sep 2024 11:31:02 -0700 Subject: [PATCH] another CI warning fix --- .github/workflows/CI.yml | 2 +- .github/workflows/deploy-docs.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 278075b..af8ecf3 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -15,7 +15,7 @@ jobs: - name: Checkout code uses: actions/checkout@v4 - - uses: fortran-lang/setup-fpm@v5 + - uses: fortran-lang/setup-fpm@v6.0.1 with: github-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index a8c2a58..c71156b 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -13,7 +13,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Install Dependencies Ubuntu run: | @@ -37,14 +37,14 @@ jobs: - name: Broken Link Check if: ${{ github.ref == 'refs/heads/main'}} - uses: technote-space/broken-link-checker-action@v1 + uses: technote-space/broken-link-checker-action@v2.3.1 with: TARGET: file://${{ github.workspace }}/doc/html/index.html RECURSIVE: true ASSIGNEES: ${{ github.actor }} - name: Deploy API Documentation - uses: JamesIves/github-pages-deploy-action@4.1.0 + uses: JamesIves/github-pages-deploy-action@4.6.4 if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }} with: branch: gh-pages