Skip to content

Commit dd34aa0

Browse files
authored
Merge pull request #236 from nfdi4cat/update-template-to-v26.1
Update repo template to v26.1
2 parents fd65a3d + db30e02 commit dd34aa0

4 files changed

Lines changed: 7 additions & 6 deletions

File tree

.github/workflows/ci-pr.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -132,14 +132,14 @@ jobs:
132132
133133
- name: Store artifacts
134134
if: ${{ always() }}
135-
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4
135+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f
136136
with:
137137
name: voc4cat-outbox_${{ env.RUN_DATE }}_run${{ GITHUB.RUN_ID }}
138138
path: outbox/
139139

140140
- name: Add/stage vocabulary changes
141141
# Pinning of action managed by dependabot
142-
uses: stefanzweifel/git-auto-commit-action@28e16e81777b558cc906c8750092100bbb34c5e3
142+
uses: stefanzweifel/git-auto-commit-action@04702edda442b2e678b25b537cec683a1493fcb9
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@28e16e81777b558cc906c8750092100bbb34c5e3
154+
uses: stefanzweifel/git-auto-commit-action@04702edda442b2e678b25b537cec683a1493fcb9
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ jobs:
129129
# This step is not required and may be removed.
130130
# It may be helpful for trouble shooting.
131131
if: ${{ always() }}
132-
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4
132+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f
133133
with:
134134
name: voc4cat-pages-dev-content
135135
path: publish/

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ jobs:
126126
# This step is not required and may be removed.
127127
# It may be helpful for troubleshooting.
128128
if: ${{ always() }}
129-
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4
129+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f
130130
with:
131131
name: voc4cat-pages-release-${{ github.ref_name }}
132132
path: publish/

justfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@ check: _fake_actions_env
5353
[group('individual steps')]
5454
convert: _fake_actions_env
5555
# make a backup of the original file just in case
56-
@cp inbox-excel-vocabs/voc4cat.xlsx inbox-excel-vocabs/voc4cat.xlsx.backup
56+
@mkdir -p inbox-excel-vocabs/backup
57+
@cp inbox-excel-vocabs/*.xlsx inbox-excel-vocabs/backup
5758
@voc4cat convert --config _main_branch/idranges.toml --logfile outbox/voc4cat.log --outdir outbox inbox-excel-vocabs/
5859
@if [ -z "$(ls outbox/*.ttl 2>/dev/null)" ]; then \
5960
@echo "No ttl file in outbox. Building joined vocabulary ttl-file from individual ttl-files in vocabulary.\n" && \

0 commit comments

Comments
 (0)