Skip to content

Commit

Permalink
ci: use specific version
Browse files Browse the repository at this point in the history
  • Loading branch information
Tchoupinax committed Nov 27, 2024
1 parent c7bf2c7 commit 835f7e1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/action-self-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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"

0 comments on commit 835f7e1

Please sign in to comment.