Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Install GFortran (MacOS)
if: ${{ contains(matrix.os, 'macos') }}
Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:
DOWNLOAD: "https://github.com/brechtsanders/winlibs_mingw/releases/download/10.3.0-12.0.0-9.0.0-r2/winlibs-x86_64-posix-seh-gcc-10.3.0-mingw-w64-9.0.0-r2.zip"

- name: Setup FPM
uses: fortran-lang/setup-fpm@v7
uses: fortran-lang/setup-fpm@v8
with:
fpm-version: 'v0.9.0'

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/delete_preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
steps:
# Checkout existing gh-pages branch into PUBLISH_DIR
- name: Checkout gh-pages
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
ref: gh-pages

Expand All @@ -37,7 +37,7 @@ jobs:

# Comment on pull request
- name: Comment on pull request
uses: peter-evans/create-or-update-comment@v4
uses: peter-evans/create-or-update-comment@v5
with:
issue-number: ${{github.event.issue.number}}
body: The preview build for this PR has now been deleted.
6 changes: 3 additions & 3 deletions .github/workflows/preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

steps:
- name: Checkout pr/${{github.event.issue.number}}
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Fetch pr/${{github.event.issue.number}}
run: |
Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:
run: touch _build/.nojekyll

- name: Deploy documentation sphinx
uses: JamesIves/github-pages-deploy-action@v4.7.3
uses: JamesIves/github-pages-deploy-action@v4.7.4
with:
token: ${{ secrets.GITHUB_TOKEN }}
branch: gh-pages
Expand All @@ -58,7 +58,7 @@ jobs:
git-config-name: Fortran

- name: Comment on pull request
uses: peter-evans/create-or-update-comment@v4
uses: peter-evans/create-or-update-comment@v5
with:
issue-number: ${{github.event.issue.number}}
body: "This PR has been built with Sphinx and can be previewed at: https://fortran-lang.github.io/fpm/pr/${{github.event.issue.number}}"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sphinx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
DEPLOY_BRANCH: ${{ secrets.DEPLOY_BRANCH && contains(github.ref, secrets.DEPLOY_BRANCH) && 1 || 0 }}

- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Install dependencies
uses: mamba-org/setup-micromamba@v2
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
env:
CNAME: ${{ secrets.CNAME }}

- uses: JamesIves/github-pages-deploy-action@v4.7.3
- uses: JamesIves/github-pages-deploy-action@v4.7.4
if: ${{ github.event_name == 'push' && steps.deploy-on-push.outputs.result != 0 }}
with:
branch: gh-pages
Expand Down
Loading