diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 0e0b470c..e9426528 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -32,20 +32,20 @@ jobs: steps: - name: Set Release Version - run: echo "RELEASE_VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_ENV + run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/v}" >> $GITHUB_ENV - name: Check Release Tag Format run: | re=[0-9]+\.[0-9]+\.[0-9]+ if ! [[ $RELEASE_VERSION =~ $re ]]; then - echo 'Tag does not match expected regex pattern for releases (v[0-9]+.[0-9]+.[0-9]+b[0-9]+)' + echo 'Tag does not match expected regex pattern for releases (v[0-9]+\.[0-9]+\.[0-9]+)' echo $RELEASE_VERSION echo 'Please update your tag to match the expected regex pattern' exit 1 fi - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Set OpenAPI Generator Version run: | diff --git a/.github/workflows/test-pr.yml b/.github/workflows/test-pr.yml index dfdea358..0c9ba8f6 100644 --- a/.github/workflows/test-pr.yml +++ b/.github/workflows/test-pr.yml @@ -43,7 +43,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Set up Python uses: actions/setup-python@v5 diff --git a/.github/workflows/test-smoke.yml b/.github/workflows/test-smoke.yml index ee90470f..07a37573 100644 --- a/.github/workflows/test-smoke.yml +++ b/.github/workflows/test-smoke.yml @@ -50,7 +50,7 @@ jobs: MANTECA_APPLICATION_ID: ${{ secrets.MANTECA_APPLICATION_ID }} steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Set up Python uses: actions/setup-python@v5 @@ -89,7 +89,7 @@ jobs: MANTECA_APPLICATION_ID: ${{ secrets.MANTECA_UP_APPLICATION_ID }} steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Set up Python uses: actions/setup-python@v5