diff --git a/.github/workflows/action-self-test.yml b/.github/workflows/action-self-test.yml index 27cbfbc..5eeb4b4 100644 --- a/.github/workflows/action-self-test.yml +++ b/.github/workflows/action-self-test.yml @@ -29,7 +29,7 @@ jobs: - name: Setup iggy (using local GitHub Action) uses: "./" with: - version: "0.4.71" + version: "0.4.82" - name: Print $PATH for iggy run: which iggy-server @@ -40,8 +40,8 @@ jobs: - name: Check version is the one asked run: | VERSION=$(iggy-server --version | grep -oP 'server \K[0-9]+\.[0-9]+\.[0-9]+') - if [ "$VERSION" != "0.4.71" ]; then - echo "Error: Expected version 0.4.71, but got $VERSION" + if [ "$VERSION" != "0.4.82" ]; then + echo "Error: Expected version 0.4.82, but got $VERSION" exit 1 fi echo "Version is correct: $VERSION"