Skip to content

Commit 54b00da

Browse files
dependabot[bot]gnikit
authored andcommitted
Bump the gh-actions group with 5 updates
Bumps the gh-actions group with 5 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `2` | `4` | | [fortran-lang/setup-fpm](https://github.com/fortran-lang/setup-fpm) | `3` | `5` | | [EndBug/add-and-commit](https://github.com/endbug/add-and-commit) | `9.1.0` | `9.1.3` | | [peter-evans/create-or-update-comment](https://github.com/peter-evans/create-or-update-comment) | `2` | `3` | | [JamesIves/github-pages-deploy-action](https://github.com/jamesives/github-pages-deploy-action) | `4.1.6` | `4.5.0` | Updates `actions/checkout` from 2 to 4 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v2...v4) Updates `fortran-lang/setup-fpm` from 3 to 5 - [Release notes](https://github.com/fortran-lang/setup-fpm/releases) - [Commits](fortran-lang/setup-fpm@v3...v5) Updates `EndBug/add-and-commit` from 9.1.0 to 9.1.3 - [Release notes](https://github.com/endbug/add-and-commit/releases) - [Commits](EndBug/add-and-commit@v9.1.0...v9.1.3) Updates `peter-evans/create-or-update-comment` from 2 to 3 - [Release notes](https://github.com/peter-evans/create-or-update-comment/releases) - [Commits](peter-evans/create-or-update-comment@v2...v3) Updates `JamesIves/github-pages-deploy-action` from 4.1.6 to 4.5.0 - [Release notes](https://github.com/jamesives/github-pages-deploy-action/releases) - [Commits](JamesIves/github-pages-deploy-action@4.1.6...v4.5.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major dependency-group: gh-actions - dependency-name: fortran-lang/setup-fpm dependency-type: direct:production update-type: version-update:semver-major dependency-group: gh-actions - dependency-name: EndBug/add-and-commit dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gh-actions - dependency-name: peter-evans/create-or-update-comment dependency-type: direct:production update-type: version-update:semver-major dependency-group: gh-actions - dependency-name: JamesIves/github-pages-deploy-action dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gh-actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent a398e92 commit 54b00da

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.github/workflows/build.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
steps:
1616
- name: Checkout repository
17-
uses: actions/checkout@v2
17+
uses: actions/checkout@v4
1818

1919
- name: Install GFortran (MacOS)
2020
if: ${{ contains(matrix.os, 'macos') }}
@@ -51,7 +51,7 @@ jobs:
5151
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"
5252

5353
- name: Setup FPM
54-
uses: fortran-lang/setup-fpm@v3
54+
uses: fortran-lang/setup-fpm@v5
5555
with:
5656
fpm-version: 'v0.9.0'
5757

.github/workflows/delete_preview.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
steps:
2121
# Checkout existing gh-pages branch into PUBLISH_DIR
2222
- name: Checkout gh-pages
23-
uses: actions/checkout@v3
23+
uses: actions/checkout@v4
2424
with:
2525
ref: gh-pages
2626

@@ -29,15 +29,15 @@ jobs:
2929
run: rm -rf pr/${{github.event.issue.number}}
3030

3131
- name: Commit and push to gh-pages
32-
uses: EndBug/[email protected].0
32+
uses: EndBug/[email protected].3
3333
with:
3434
message: "Sphinx build cleanup pr/${{github.event.issue.number}}"
3535
env:
3636
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3737

3838
# Comment on pull request
3939
- name: Comment on pull request
40-
uses: peter-evans/create-or-update-comment@v2
40+
uses: peter-evans/create-or-update-comment@v3
4141
with:
4242
issue-number: ${{github.event.issue.number}}
4343
body: The preview build for this PR has now been deleted.

.github/workflows/preview.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
steps:
1717
- name: Checkout pr/${{github.event.issue.number}}
18-
uses: actions/checkout@v3
18+
uses: actions/checkout@v4
1919

2020
- name: Fetch pr/${{github.event.issue.number}}
2121
run: |
@@ -40,7 +40,7 @@ jobs:
4040
touch _build/.nojekyll
4141
4242
- name: Deploy documentation sphinx
43-
uses: JamesIves/github-pages-deploy-action@v4.4.0
43+
uses: JamesIves/github-pages-deploy-action@v4.5.0
4444
with:
4545
token: ${{ secrets.GITHUB_TOKEN }}
4646
branch: gh-pages
@@ -51,7 +51,7 @@ jobs:
5151
git-config-name: Fortran
5252

5353
- name: Comment on pull request
54-
uses: peter-evans/create-or-update-comment@v2
54+
uses: peter-evans/create-or-update-comment@v3
5555
with:
5656
issue-number: ${{github.event.issue.number}}
5757
body: "This PR has been built with Sphinx and can be previewed at: https://fortran-lang.github.io/fpm/pr/${{github.event.issue.number}}"

.github/workflows/sphinx.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
DEPLOY_BRANCH: ${{ secrets.DEPLOY_BRANCH && contains(github.ref, secrets.DEPLOY_BRANCH) && 1 || 0 }}
2323

2424
- name: Checkout repository
25-
uses: actions/checkout@v2
25+
uses: actions/checkout@v4
2626

2727
- name: Install dependencies
2828
uses: mamba-org/setup-micromamba@v1
@@ -45,7 +45,7 @@ jobs:
4545
env:
4646
CNAME: ${{ secrets.CNAME }}
4747

48-
- uses: JamesIves/github-pages-deploy-action@4.1.6
48+
- uses: JamesIves/github-pages-deploy-action@v4.5.0
4949
if: ${{ github.event_name == 'push' && steps.deploy-on-push.outputs.result != 0 }}
5050
with:
5151
branch: gh-pages

0 commit comments

Comments
 (0)