Skip to content

Commit aad7610

Browse files
Merge branch 'nfdi4cat:main' into PR-for-new-terms-8133-8145
2 parents f6f256f + 9cff67b commit aad7610

4 files changed

Lines changed: 13 additions & 13 deletions

File tree

.github/workflows/ci-pr.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939

4040
steps:
4141
- name: Checkout PR branch into cwd
42-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
42+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0
4343
with:
4444
# Checkout the fork/head-repository to push changes to the fork.
4545
# Without this the base repository will be checked out and committed to.
@@ -52,7 +52,7 @@ jobs:
5252
persist-credentials: true
5353

5454
- name: Checkout main branch into directory _main_branch/
55-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
55+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0
5656
with:
5757
ref: main
5858
path: _main_branch
@@ -63,7 +63,7 @@ jobs:
6363
# Be specific about keeping credentials (it is the default)
6464
persist-credentials: true
6565

66-
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405
66+
- uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1
6767
with:
6868
python-version: '3.13'
6969

@@ -139,7 +139,7 @@ jobs:
139139

140140
- name: Add/stage vocabulary changes
141141
# Pinning of action managed by dependabot
142-
uses: stefanzweifel/git-auto-commit-action@04702edda442b2e678b25b537cec683a1493fcb9
142+
uses: stefanzweifel/git-auto-commit-action@4a55954c782fc1ea30b9056cd3e7a2b40ca8887d
143143
with:
144144
# glob pattern of files which should be added to the commit
145145
file_pattern: 'vocabularies/\*.ttl'
@@ -151,7 +151,7 @@ jobs:
151151
152152
- name: Commit vocabulary changes & xlsx cleanup on behalf of PR-author
153153
# Pinning of action managed by dependabot
154-
uses: stefanzweifel/git-auto-commit-action@04702edda442b2e678b25b537cec683a1493fcb9
154+
uses: stefanzweifel/git-auto-commit-action@4a55954c782fc1ea30b9056cd3e7a2b40ca8887d
155155
with:
156156
commit_user_name: voc4cat-CI-bot
157157
commit_message: 'CI: vocabulary update in ${{ GITHUB.SERVER_URL }}/${{ GITHUB.REPOSITORY }}/actions/runs/${{ GITHUB.RUN_ID }}'

.github/workflows/merge.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,23 +41,23 @@ jobs:
4141
runs-on: ubuntu-latest
4242
timeout-minutes: 10
4343
steps:
44-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
44+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0
4545
with:
4646
# Using fetch-depth 0 is the only way to get all tags which are needed for building docs.
4747
fetch-depth: 0
4848
# Be specific about keeping credentials (it is the default)
4949
persist-credentials: true
5050

5151
- name: Checkout gh-pages branch to dir publish/
52-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
52+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0
5353
with:
5454
ref: gh-pages
5555
path: publish
5656
fetch-depth: 1
5757
# Be specific about keeping credentials (it is the default)
5858
persist-credentials: true
5959

60-
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405
60+
- uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1
6161
with:
6262
python-version: '3.13'
6363

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,23 +35,23 @@ jobs:
3535
runs-on: ubuntu-latest
3636
timeout-minutes: 10
3737
steps:
38-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
38+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0
3939
with:
4040
# Using fetch-depth 0 is the only way to get all tags which are needed for building docs.
4141
fetch-depth: 0
4242
# Be specific about keeping credentials (it is the default)
4343
persist-credentials: true
4444

4545
- name: Checkout gh-pages branch to dir publish/
46-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
46+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0
4747
with:
4848
ref: gh-pages
4949
path: publish
5050
fetch-depth: 1
5151
# Be specific about keeping credentials (it is the default)
5252
persist-credentials: true
5353

54-
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405
54+
- uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1
5555
with:
5656
python-version: '3.13'
5757

.github/workflows/test-demo-notebooks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ jobs:
3030
os: [ubuntu-latest, windows-latest]
3131
python-version: ["3.10", "3.14"]
3232
steps:
33-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
33+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0
3434
with:
3535
persist-credentials: false
3636

37-
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405
37+
- uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1
3838
with:
3939
python-version: ${{ matrix.python-version }}
4040

0 commit comments

Comments
 (0)