Skip to content

Commit 8696c72

Browse files
committed
Merge branch 'main' into feature/direction_rose
2 parents 50476ea + 9a77ff2 commit 8696c72

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+587
-390
lines changed

.github/workflows/benchmarks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
steps:
3737
# Checkout current git repository
3838
- name: Checkout
39-
uses: actions/checkout@v4.2.2
39+
uses: actions/checkout@v5.0.0
4040
with:
4141
# fetch all history so that setuptools-scm works
4242
fetch-depth: 0

.github/workflows/cache_data.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
steps:
3939
# Checkout current git repository
4040
- name: Checkout
41-
uses: actions/checkout@v4.2.2
41+
uses: actions/checkout@v5.0.0
4242
with:
4343
# fetch all history so that setuptools-scm works
4444
fetch-depth: 0

.github/workflows/check-links.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,27 +26,28 @@ jobs:
2626

2727
steps:
2828
- name: Checkout the repository
29-
uses: actions/checkout@v4.2.2
29+
uses: actions/checkout@v5.0.0
3030
with:
3131
path: repository
3232
persist-credentials: false
3333

3434
- name: Checkout the documentation
35-
uses: actions/checkout@v4.2.2
35+
uses: actions/checkout@v5.0.0
3636
with:
3737
ref: gh-pages
3838
path: documentation
3939
persist-credentials: false
4040

4141
- name: Link Checker
4242
id: lychee
43-
uses: lycheeverse/lychee-action@82202e5e9c2f4ef1a55a3d02563e1cb6041e5332 # v2.4.1
43+
uses: lycheeverse/lychee-action@5c4ee84814c983aa7164eaee476f014e53ff3963 # v2.5.0
4444
with:
4545
fail: false # Don't fail action on broken links
4646
output: /tmp/lychee-out.md
47+
# 200: OK
4748
# 429: Too many requests
4849
args: >
49-
--accept 429
50+
--accept 200,429
5051
--exclude "^https://docs.generic-mapping-tools.org/6.[0-9]?/%s$"
5152
--exclude "^https://docs.generic-mapping-tools.org/6.[0-9]?/%3Cmodule-name%3E.html$"
5253
--exclude "^https://doi.org"

.github/workflows/ci_docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
steps:
7272
# Checkout current git repository
7373
- name: Checkout
74-
uses: actions/checkout@v4.2.2
74+
uses: actions/checkout@v5.0.0
7575
with:
7676
# fetch all history so that setuptools-scm works
7777
fetch-depth: 0
@@ -168,7 +168,7 @@ jobs:
168168
REF_NAME: ${{ github.ref_name }}
169169

170170
- name: Checkout the gh-pages branch
171-
uses: actions/checkout@v4.2.2
171+
uses: actions/checkout@v5.0.0
172172
with:
173173
ref: gh-pages
174174
# Checkout to this folder instead of the current one

.github/workflows/ci_doctests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
steps:
3838
# Checkout current git repository
3939
- name: Checkout
40-
uses: actions/checkout@v4.2.2
40+
uses: actions/checkout@v5.0.0
4141
with:
4242
# fetch all history so that setuptools-scm works
4343
fetch-depth: 0

.github/workflows/ci_tests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ jobs:
104104
steps:
105105
# Checkout current git repository
106106
- name: Checkout
107-
uses: actions/checkout@v4.2.2
107+
uses: actions/checkout@v5.0.0
108108
with:
109109
# fetch all history so that setuptools-scm works
110110
fetch-depth: 0
@@ -151,7 +151,7 @@ jobs:
151151
GH_TOKEN: ${{ github.token }}
152152

153153
- name: Install uv
154-
uses: astral-sh/setup-uv@e92bafb6253dcd438e0484186d7669ea7a8ca1cc # v6.4.3
154+
uses: astral-sh/setup-uv@d9e0f98d3fc6adb07d1e3d37f3043649ddad06a1 # v6.5.0
155155
with:
156156
activate-environment: true
157157
python-version: ${{ matrix.python-version }}

.github/workflows/ci_tests_dev.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
steps:
4949
# Checkout current git repository
5050
- name: Checkout
51-
uses: actions/checkout@v4.2.2
51+
uses: actions/checkout@v5.0.0
5252
with:
5353
# fetch all history so that setuptools-scm works
5454
fetch-depth: 0
@@ -94,7 +94,7 @@ jobs:
9494

9595
# Checkout current GMT repository
9696
- name: Checkout the GMT source from ${{ matrix.gmt_git_ref }} branch
97-
uses: actions/checkout@v4.2.2
97+
uses: actions/checkout@v5.0.0
9898
with:
9999
repository: 'GenericMappingTools/gmt'
100100
ref: ${{ matrix.gmt_git_ref }}

.github/workflows/ci_tests_legacy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
steps:
4747
# Checkout current git repository
4848
- name: Checkout
49-
uses: actions/checkout@v4.2.2
49+
uses: actions/checkout@v5.0.0
5050
with:
5151
# fetch all history so that setuptools-scm works
5252
fetch-depth: 0

.github/workflows/dvc-diff.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323

2424
steps:
2525
- name: Checkout
26-
uses: actions/checkout@v4.2.2
26+
uses: actions/checkout@v5.0.0
2727
with:
2828
# fetch all history so that dvc diff works
2929
fetch-depth: 0

.github/workflows/format-command.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
private-key: ${{ secrets.APP_PRIVATE_KEY }}
2424

2525
# Checkout the pull request branch
26-
- uses: actions/checkout@v4.2.2
26+
- uses: actions/checkout@v5.0.0
2727
with:
2828
token: ${{ steps.generate-token.outputs.token }}
2929
repository: ${{ github.event.client_payload.pull_request.head.repo.full_name }}

0 commit comments

Comments
 (0)