Skip to content

Commit

Permalink
Change: Use v2 actions in main
Browse files Browse the repository at this point in the history
When using our own action in a composite action always use the v2
version in the main branch too. This prepares for a possible switch from
a v2 branch to a v2 tag.
  • Loading branch information
bjoernricks committed May 15, 2023
1 parent 37feea5 commit 06f3d46
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion backport-pull-request/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ runs:
using: "composite"
steps:
- name: Set up Python and Poetry
uses: greenbone/actions/poetry@main
uses: greenbone/actions/poetry@v2
with:
python-version: ${{ inputs.python-version }}
poetry-version: ${{ inputs.poetry-version }}
Expand Down
2 changes: 1 addition & 1 deletion conventional-commits/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ runs:
with:
fetch-depth: 0
- name: Set up Python and Poetry
uses: greenbone/actions/poetry@main
uses: greenbone/actions/poetry@v2
with:
python-version: ${{ inputs.python-version }}
poetry-version: ${{ inputs.poetry-version }}
Expand Down
2 changes: 1 addition & 1 deletion download-artifact/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ runs:
using: "composite"
steps:
- name: Set up Python and Poetry
uses: greenbone/actions/poetry@main
uses: greenbone/actions/poetry@v2
with:
python-version: ${{ inputs.python-version }}
poetry-version: ${{ inputs.poetry-version }}
Expand Down
2 changes: 1 addition & 1 deletion mypy-python/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ runs:
using: "composite"
steps:
- name: Install poetry
uses: greenbone/actions/poetry@main
uses: greenbone/actions/poetry@v2
with:
version: ${{ inputs.version }}
python-version: ${{ inputs.python-version }}
Expand Down
2 changes: 1 addition & 1 deletion trigger-workflow/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ runs:
using: "composite"
steps:
- name: Set up Python and Poetry
uses: greenbone/actions/poetry@main
uses: greenbone/actions/poetry@v2
with:
python-version: ${{ inputs.python-version }}
poetry-version: ${{ inputs.poetry-version }}
Expand Down

0 comments on commit 06f3d46

Please sign in to comment.