Skip to content

Commit c5af93a

Browse files
Update GitHub Actions (#3810)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 8f5de3b commit c5af93a

20 files changed

+44
-44
lines changed

.github/workflows/changelog.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
fi
3737
gh pr checkout $PR_NUMBER
3838
39-
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
39+
- uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6
4040
with:
4141
python-version: "3.13"
4242

@@ -67,7 +67,7 @@ jobs:
6767
echo "changed=$file_changed" >> $GITHUB_OUTPUT
6868
6969
- name: Set up Python 3.13
70-
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
70+
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6
7171
with:
7272
python-version: "3.13"
7373
cache: "pip"

.github/workflows/clean-up.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
issues: write
1111
pull-requests: write
1212
steps:
13-
- uses: actions/stale@5bef64f19d7facfb25b37b414482c7164d639639 # v9
13+
- uses: actions/stale@5f858e3efba33a5ca4407a664cc011ad407f2008 # v10
1414
with:
1515
stale-issue-message: "This issue has been tagged as awaiting-changes or awaiting-feedback by an nf-core contributor. Remove stale label or add a comment otherwise this issue will be closed in 20 days."
1616
stale-pr-message: "This PR has been tagged as awaiting-changes or awaiting-feedback by an nf-core contributor. Remove stale label or add a comment if it is still useful."

.github/workflows/create-lint-wf.yml

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

4848
# Set up nf-core/tools
4949
- name: Set up Python 3.13
50-
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
50+
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6
5151
with:
5252
python-version: "3.13"
5353
cache: pip

.github/workflows/create-test-lint-wf-template.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
6060

6161
- name: Set up Python 3.13
62-
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
62+
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6
6363
with:
6464
python-version: "3.13"
6565

.github/workflows/create-test-wf.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
name: Check out source-code repository
4646

4747
- name: Set up Python 3.13
48-
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
48+
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6
4949
with:
5050
python-version: "3.13"
5151

.github/workflows/deploy-pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
name: Check out source-code repository
1818

1919
- name: Set up Python 3.13
20-
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
20+
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6
2121
with:
2222
python-version: "3.13"
2323

.github/workflows/fix-linting.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
# indication that the linting is being fixed
2121
- name: React on comment
22-
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043 # v4
22+
uses: peter-evans/create-or-update-comment@e8674b075228eee787fea43ef493e45ece1004c9 # v5
2323
with:
2424
comment-id: ${{ github.event.comment.id }}
2525
reactions: eyes
@@ -32,7 +32,7 @@ jobs:
3232
GITHUB_TOKEN: ${{ secrets.nf_core_bot_auth_token }}
3333

3434
# Install and run pre-commit
35-
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
35+
- uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6
3636
with:
3737
python-version: "3.13"
3838

@@ -47,7 +47,7 @@ jobs:
4747
# indication that the linting has finished
4848
- name: react if linting finished succesfully
4949
if: steps.pre-commit.outcome == 'success'
50-
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043 # v4
50+
uses: peter-evans/create-or-update-comment@e8674b075228eee787fea43ef493e45ece1004c9 # v5
5151
with:
5252
comment-id: ${{ github.event.comment.id }}
5353
reactions: "+1"
@@ -67,21 +67,21 @@ jobs:
6767
- name: react if linting errors were fixed
6868
id: react-if-fixed
6969
if: steps.commit-and-push.outcome == 'success'
70-
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043 # v4
70+
uses: peter-evans/create-or-update-comment@e8674b075228eee787fea43ef493e45ece1004c9 # v5
7171
with:
7272
comment-id: ${{ github.event.comment.id }}
7373
reactions: hooray
7474

7575
- name: react if linting errors were not fixed
7676
if: steps.commit-and-push.outcome == 'failure'
77-
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043 # v4
77+
uses: peter-evans/create-or-update-comment@e8674b075228eee787fea43ef493e45ece1004c9 # v5
7878
with:
7979
comment-id: ${{ github.event.comment.id }}
8080
reactions: confused
8181

8282
- name: react if linting errors were not fixed
8383
if: steps.commit-and-push.outcome == 'failure'
84-
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043 # v4
84+
uses: peter-evans/create-or-update-comment@e8674b075228eee787fea43ef493e45ece1004c9 # v5
8585
with:
8686
issue-number: ${{ github.event.issue.number }}
8787
body: |

.github/workflows/lint-code.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
2424

2525
- name: Set up Python 3.13
26-
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
26+
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6
2727
with:
2828
python-version: "3.13"
2929
cache: "pip"

.github/workflows/nextflow-source-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ jobs:
2626
path: nf-core-tools
2727

2828
- name: Set up Python
29-
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
29+
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6
3030
with:
3131
python-version: "3.13"
3232
cache: pip
3333
cache-dependency-path: nf-core-tools/pyproject.toml
3434

3535
- name: Set up Java
36-
uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # v4
36+
uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165 # v5
3737
with:
3838
distribution: "temurin"
3939
architecture: x64

.github/workflows/pytest.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
name: Check out source-code repository
8484

8585
- name: Set up Python ${{ needs.setup.outputs.python-version }}
86-
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
86+
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6
8787
with:
8888
python-version: ${{ needs.setup.outputs.python-version }}
8989
cache: "pip"
@@ -155,7 +155,7 @@ jobs:
155155
steps:
156156
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
157157
- name: Set up Python 3.13
158-
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
158+
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6
159159
with:
160160
python-version: "3.13"
161161
cache: "pip"

0 commit comments

Comments
 (0)