Skip to content

Commit cdbf77d

Browse files
authored
Merge pull request nf-core#744 from nf-core/nf-core-template-merge-3.5.1
Important! Template update for nf-core/tools v3.5.1
2 parents 5ee0706 + e27595e commit cdbf77d

File tree

18 files changed

+65
-46
lines changed

18 files changed

+65
-46
lines changed

.github/workflows/awsfulltest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
}
4040
profiles: test_full
4141

42-
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
42+
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5
4343
with:
4444
name: Seqera Platform debug log file
4545
path: |

.github/workflows/awstest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
}
2626
profiles: test
2727

28-
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
28+
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5
2929
with:
3030
name: Seqera Platform debug log file
3131
path: |

.github/workflows/download_pipeline.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ jobs:
127127
fi
128128
129129
- name: Upload Nextflow logfile for debugging purposes
130-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
130+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5
131131
with:
132132
name: nextflow_logfile.txt
133133
path: .nextflow.log*

.github/workflows/fix_linting.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
# Use the @nf-core-bot token to check out so we can push later
16-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
16+
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
1717
with:
1818
token: ${{ secrets.nf_core_bot_auth_token }}
1919

.github/workflows/linting.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
pre-commit:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
14+
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
1515

1616
- name: Set up Python 3.14
1717
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6
@@ -28,7 +28,7 @@ jobs:
2828
runs-on: ubuntu-latest
2929
steps:
3030
- name: Check out pipeline code
31-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
31+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
3232

3333
- name: Install Nextflow
3434
uses: nf-core/setup-nextflow@v2
@@ -71,7 +71,7 @@ jobs:
7171

7272
- name: Upload linting log file artifact
7373
if: ${{ always() }}
74-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
74+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5
7575
with:
7676
name: linting-logs
7777
path: |

.github/workflows/nf-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
rm -rf ./* || true
4141
rm -rf ./.??* || true
4242
ls -la ./
43-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
43+
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
4444
with:
4545
fetch-depth: 0
4646

@@ -84,7 +84,7 @@ jobs:
8484
TOTAL_SHARDS: ${{ needs.nf-test-changes.outputs.total_shards }}
8585

8686
steps:
87-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
87+
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
8888
with:
8989
fetch-depth: 0
9090

.github/workflows/release-announcements.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,9 @@ jobs:
1515
echo "topics=$(curl -s https://nf-co.re/pipelines.json | jq -r '.remote_workflows[] | select(.full_name == "${{ github.repository }}") | .topics[]' | awk '{print "#"$0}' | tr '\n' ' ')" | sed 's/-//g' >> $GITHUB_OUTPUT
1616
1717
- name: get description
18-
id: get_topics
18+
id: get_description
1919
run: |
20-
echo "description=$(curl -s https://nf-co.re/pipelines.json | jq -r '.remote_workflows[] | select(.full_name == "${{ github.repository }}") | .description' >> $GITHUB_OUTPUT
21-
20+
echo "description=$(curl -s https://nf-co.re/pipelines.json | jq -r '.remote_workflows[] | select(.full_name == "${{ github.repository }}") | .description')" >> $GITHUB_OUTPUT
2221
- uses: rzr/fediverse-action@master
2322
with:
2423
access-token: ${{ secrets.MASTODON_ACCESS_TOKEN }}
@@ -27,9 +26,7 @@ jobs:
2726
# https://docs.github.com/en/developers/webhooks-and-events/webhooks/webhook-events-and-payloads#release
2827
message: |
2928
Pipeline release! ${{ github.repository }} v${{ github.event.release.tag_name }} - ${{ github.event.release.name }}!
30-
31-
${{ steps.get_topics.outputs.description }}
32-
29+
${{ steps.get_description.outputs.description }}
3330
Please see the changelog: ${{ github.event.release.html_url }}
3431
3532
${{ steps.get_topics.outputs.topics }} #nfcore #openscience #nextflow #bioinformatics

.github/workflows/template-version-comment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Check out pipeline code
12-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
12+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
1313
with:
1414
ref: ${{ github.event.pull_request.head.sha }}
1515

.nf-core.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ lint:
88
- docs/images/nf-core-raredisease_logo_light.png
99
- assets/nf-core-raredisease_logo_light.png
1010
modules_config: false
11-
nf_core_version: 3.4.1
11+
nf_core_version: 3.5.1
1212
repository_type: pipeline
1313
template:
1414
author: Clinical Genomics Stockholm

.prettierignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,5 @@ testing*
1212
bin/
1313
.nf-test/
1414
ro-crate-metadata.json
15+
modules/nf-core/
16+
subworkflows/nf-core/

0 commit comments

Comments
 (0)