Skip to content

Commit e753734

Browse files
committed
action runner versions update, macos runner to latest
1 parent 18e117b commit e753734

3 files changed

Lines changed: 218 additions & 219 deletions

File tree

.github/workflows/pypi.yml

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,33 @@
11
name: pypi upload
22

33
on:
4-
create:
5-
tags:
6-
- '*'
4+
create:
5+
tags:
6+
- "*"
77

88
defaults:
9-
run:
10-
shell: bash -l {0}
9+
run:
10+
shell: bash -l {0}
1111

1212
jobs:
13-
pypi:
14-
if: ${{ startsWith(github.ref, 'refs/tags/') }}
15-
name: upload to pypi
16-
runs-on: ubuntu-latest
17-
steps:
18-
- uses: actions/checkout@v4
19-
- uses: actions/setup-python@v5
20-
with:
21-
python-version: '3.12'
22-
cache: 'pip'
23-
- name: build
24-
run: |
25-
pip install .[actions]
26-
rm -f dist/*
27-
python -m build
28-
- name: upload
29-
env:
30-
TWINE_USERNAME: "__token__"
31-
TWINE_PASSWORD: ${{ secrets.pypi_password }}
32-
run: |
33-
twine upload dist/*
13+
pypi:
14+
if: ${{ startsWith(github.ref, 'refs/tags/') }}
15+
name: upload to pypi
16+
runs-on: ubuntu-latest
17+
steps:
18+
- uses: actions/checkout@v7
19+
- uses: actions/setup-python@v6
20+
with:
21+
python-version: "3.12"
22+
cache: "pip"
23+
- name: build
24+
run: |
25+
pip install .[actions]
26+
rm -f dist/*
27+
python -m build
28+
- name: upload
29+
env:
30+
TWINE_USERNAME: "__token__"
31+
TWINE_PASSWORD: ${{ secrets.pypi_password }}
32+
run: |
33+
twine upload dist/*

.github/workflows/test_planemo.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ jobs:
1616
matrix:
1717
chunk: [1, 2, 3]
1818
steps:
19-
- uses: actions/checkout@v4
20-
- uses: conda-incubator/setup-miniconda@v3
19+
- uses: actions/checkout@v7
20+
- uses: conda-incubator/setup-miniconda@v4
2121
with:
2222
miniconda-version: "latest"
2323
auto-activate-base: true
@@ -31,7 +31,7 @@ jobs:
3131
- name: planemo
3232
run: |
3333
./.planemo.sh ${{ matrix.chunk }} ${{ env.GALAXY_BRANCH }}
34-
- uses: actions/upload-artifact@v4
34+
- uses: actions/upload-artifact@v7
3535
with:
3636
name: "Tool test output ${{ matrix.chunk }}"
3737
path: upload
@@ -40,7 +40,7 @@ jobs:
4040
needs: planemo_test
4141
runs-on: ubuntu-latest
4242
steps:
43-
- uses: actions/download-artifact@v4
43+
- uses: actions/download-artifact@v8
4444
with:
4545
path: artifacts
4646
- name: Combine outputs
@@ -49,7 +49,7 @@ jobs:
4949
with:
5050
mode: combine
5151
html-report: true
52-
- uses: actions/upload-artifact@v4
52+
- uses: actions/upload-artifact@v7
5353
with:
5454
name: "All tool test results"
5555
path: upload

0 commit comments

Comments
 (0)