Skip to content

Commit fbb36f1

Browse files
authored
Merge pull request #40 from fangohr/update-checkout-action
update checkout versions (gets rid of GitHub workflow warnings)
2 parents 46821aa + 6ce3af1 commit fbb36f1

File tree

4 files changed

+16
-14
lines changed

4 files changed

+16
-14
lines changed

.github/workflows/deploy.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ jobs:
1111
docker-build-and-deploy:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v4
1515

1616
- name: Set up Docker Buildx
17-
uses: docker/setup-buildx-action@v1
17+
uses: docker/setup-buildx-action@v3
1818

1919
- name: Cache Docker layers
20-
uses: actions/cache@v2
20+
uses: actions/cache@v4
2121
with:
2222
path: /tmp/.buildx-cache
2323
key: ${{ runner.os }}-buildx-${{ hashFiles('poetry.lock') }}
@@ -27,7 +27,7 @@ jobs:
2727
# This build and push step does the same thing as `make docker-build`, but
2828
# makes it easier to store and load caches, which is why we use it instead
2929
- name: Build and Save Layers Locally
30-
uses: docker/build-push-action@v2
30+
uses: docker/build-push-action@v5
3131
with:
3232
context: ./
3333
file: ./Dockerfile
@@ -60,7 +60,7 @@ jobs:
6060
github_token: ${{ secrets.GITHUB_TOKEN }}
6161
publish_dir: ./book/_build/html
6262

63-
- uses: marvinpinto/action-automatic-releases@10bdce64abdb4558a2ee6983192242be40d631d8
63+
- uses: marvinpinto/action-automatic-releases@latest
6464
with:
6565
repo_token: "${{ secrets.GITHUB_TOKEN }}"
6666
automatic_release_tag: "latest"

.github/workflows/nbval.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ jobs:
99
docker-build-and-nbval:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v4
1313

1414
- name: Set up Docker Buildx
15-
uses: docker/setup-buildx-action@v1
15+
uses: docker/setup-buildx-action@v3
1616

1717
- name: Cache Docker layers
18-
uses: actions/cache@v2
18+
uses: actions/cache@v4
1919
with:
2020
path: /tmp/.buildx-cache
2121
key: ${{ runner.os }}-buildx-${{ hashFiles('poetry.lock') }}
@@ -25,7 +25,7 @@ jobs:
2525
# This build and push step does the same thing as `make docker-build`, but
2626
# makes it easier to store and load caches, which is why we use it instead
2727
- name: Build and Save Layers Locally
28-
uses: docker/build-push-action@v2
28+
uses: docker/build-push-action@v5
2929
with:
3030
context: ./
3131
file: ./Dockerfile

.github/workflows/stage.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ jobs:
99
docker-build-and-stage:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v4
1313

1414
- name: Set up Docker Buildx
15-
uses: docker/setup-buildx-action@v1
15+
uses: docker/setup-buildx-action@v3
1616

1717
- name: Cache Docker layers
18-
uses: actions/cache@v2
18+
uses: actions/cache@v4
1919
with:
2020
path: /tmp/.buildx-cache
2121
key: ${{ runner.os }}-buildx-${{ hashFiles('poetry.lock') }}
@@ -25,7 +25,7 @@ jobs:
2525
# This build and push step does the same thing as `make docker-build`, but
2626
# makes it easier to store and load caches, which is why we use it instead
2727
- name: Build and Save Layers Locally
28-
uses: docker/build-push-action@v2
28+
uses: docker/build-push-action@v5
2929
with:
3030
context: ./
3131
file: ./Dockerfile

Readme.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
</a>
1515

1616
An Introduction to Python for Computational Science and Engineering, developed
17-
by Hans Fangohr (2003-2021).
17+
by Hans Fangohr since 2003.
1818

1919
The content and methods taught are intended for a target audience of scientists
2020
and engineers who need to use computational methods and data processing in their
@@ -123,7 +123,9 @@ Hans Fangohr is a researcher and teacher (see
123123
[mastodon](https://fosstodon.org/@ProfCompMod)). His interests include effective
124124
software engineering for computational science and data science, researching
125125
computational modelling and data analysis methods, and education. He is a
126+
<!-- markdown-link-check-disable -->
126127
Professor at the [University of Southampton (UK)](https://www.southampton.ac.uk)
128+
<!-- markdown-link-check-enable -->
127129
and Head of the Scientific Support Unit for Computational Science at the [Max Planck Institute for Structure and Dynamics of Matter (Germany)](https://www.mpsd.mpg.de/research/ssus/comput-science).
128130

129131
----

0 commit comments

Comments
 (0)