Skip to content

Commit

Permalink
Fix failure in test workflow (#700)
Browse files Browse the repository at this point in the history
  • Loading branch information
gionn authored Jul 29, 2024
1 parent 2652dd5 commit dfaa3a9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
6 changes: 4 additions & 2 deletions .github/actions/setup-pysemver/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,10 @@ inputs:
runs:
using: "composite"
steps:
- run: |
TOOL_VERSION=${{ inputs.version }}
- name: Install pysemver via pip
env:
TOOL_VERSION: ${{ inputs.version }}
run: |
pip3 install git+https://github.com/python-semver/python-semver.git@$TOOL_VERSION
pysemver --version
shell: bash
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- uses: ./.github/actions/setup-pysemver
- uses: ./.github/actions/calculate-next-internal-version
with:
next-version: 7.3.0
# - name: Manual test for send slack notification
# uses: ./.github/actions/send-slack-notification
# with:
Expand Down Expand Up @@ -68,10 +72,6 @@ jobs:
secret-key: ${{ secrets.RANCHER2_SECRET_KEY }}
context: local
- uses: ./.github/actions/setup-updatebot
- uses: ./.github/actions/setup-pysemver
- uses: ./.github/actions/calculate-next-internal-version
with:
next-version: 7.3.0
- uses: ./.github/actions/resolve-preview-name
- uses: ./.github/actions/setup-terraform-docs
- uses: ./.github/actions/setup-kcadm
Expand Down

0 comments on commit dfaa3a9

Please sign in to comment.