Skip to content

Commit 4ab9933

Browse files
chore: release v2.0.1 (#3250)
1 parent 424d565 commit 4ab9933

19 files changed

+2877
-2613
lines changed

.github/workflows/acceptance-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
persist: ${{ steps.deploy-comment.outputs.persist}}
3232
steps:
3333
- id: deploy-comment
34-
uses: SwissDataScienceCenter/renku-actions/[email protected].1
34+
uses: SwissDataScienceCenter/renku-actions/[email protected].2
3535
with:
3636
string: /deploy
3737
pr_ref: ${{ github.event.number }}

.github/workflows/cheatsheet.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
if: "'refs/heads/master' != github.ref && 'refs/heads/develop' != github.ref && !startsWith(github.ref, 'refs/tags/')"
1616
steps:
17-
- uses: actions/checkout@v3.1.0
17+
- uses: actions/checkout@v3.2.0
1818
- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
1919
- name: Set up Python 3.9
2020
uses: actions/setup-python@v1
@@ -35,15 +35,16 @@ jobs:
3535
key: ${{env.CACHE_PREFIX}}-${{ runner.os }}-${{ env.pythonLocation }}-${{ hashFiles('pyproject.toml') }}-${{hashFiles('poetry.lock')}}-${{hashFiles('build.py')}}
3636
- name: Install dependencies
3737
if: steps.cache.outputs.cache-hit != 'true'
38+
env:
39+
POETRY_VIRTUALENVS_CREATE: false
3840
run: |
3941
python -m pip install --upgrade pip
40-
python -m pip install coveralls poetry wheel twine poetry-dynamic-versioning==0.17.1
41-
poetry-dynamic-versioning
42-
python -m pip install .[all]
42+
python -m pip install coveralls poetry wheel twine
43+
poetry self add "poetry-dynamic-versioning[plugin]"
44+
poetry install -E toil -E service --with dev,tests,docs
4345
- name: Install renku into cache
4446
if: steps.cache.outputs.cache-hit == 'true'
4547
run: |
46-
poetry-dynamic-versioning
4748
python -m pip install --no-deps .
4849
- name: Set Git config
4950
run: |

.github/workflows/combine-dependabot-updates.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
combine-prs:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v3.1.0
9+
- uses: actions/checkout@v3.2.0
1010
with:
1111
fetch-depth: 0
1212
token: "${{ secrets.RENKUBOT_GITHUB_TOKEN }}"

.github/workflows/publish_shacl.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
build:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v3.1.0
14+
- uses: actions/checkout@v3.2.0
1515
with:
1616
fetch-depth: 0
1717
- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*

.github/workflows/release.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
create-release-pr:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v3.1.0
14+
- uses: actions/checkout@v3.2.0
1515
with:
1616
fetch-depth: 0
1717
token: "${{ secrets.RENKUBOT_GITHUB_TOKEN }}"
@@ -31,12 +31,9 @@ jobs:
3131
id: changelog
3232
run: |
3333
echo '{"version": "${{ github.event.inputs.version }}"}' > context.json
34-
conventional-changelog -r 1 -p angular -c context.json | pandoc --from markdown --to rst | sed -e '/=======/r /dev/stdin' -e 's/=======/=======\n/' -i CHANGES.rst
34+
conventional-changelog -r 1 -p angular -c context.json | pandoc --from markdown --to rst | sed -e '/=======\n/r /dev/stdin' -e 's/=======\n/=======\n\n/' -i CHANGES.rst
3535
conventional-changelog -r 1 -p angular -c context.json > release_body.md
3636
rm context.json
37-
- name: Update version.py
38-
run: |
39-
sed -ri 's/__version__ = "[0-9.]+"/__version__ = "${{ github.event.inputs.version }}"/g' renku/version.py
4037
- name: Update Chart version
4138
run: |
4239
yq eval -i '.version = "${{ github.event.inputs.version }}"' helm-chart/renku-core/Chart.yaml

.github/workflows/semantic_pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ jobs:
1010
main:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: amannn/action-semantic-pull-request@v4.6.0
13+
- uses: amannn/action-semantic-pull-request@v5.0.2
1414
env:
1515
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)