Skip to content

Commit 1268fd7

Browse files
authored
Merge branch 'release-1.17' into feat-bulk-pubsub-stable
2 parents 53a61b4 + 010bca5 commit 1268fd7

55 files changed

Lines changed: 3534 additions & 3237 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/fossa.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,12 @@ jobs:
4545
uses: actions/checkout@v6
4646

4747
- name: "Run FOSSA Scan"
48-
uses: fossas/fossa-action@v1.7.0 # Use a specific version if locking is preferred
48+
uses: fossas/fossa-action@v1.8.0 # Use a specific version if locking is preferred
4949
with:
5050
api-key: ${{ env.FOSSA_API_KEY }}
5151

5252
- name: "Run FOSSA Test"
53-
uses: fossas/fossa-action@v1.7.0 # Use a specific version if locking is preferred
53+
uses: fossas/fossa-action@v1.8.0 # Use a specific version if locking is preferred
5454
with:
5555
api-key: ${{ env.FOSSA_API_KEY }}
5656
run-tests: true

.github/workflows/validate_examples.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,14 +65,14 @@ jobs:
6565
repository: ${{ env.CHECKOUT_REPO }}
6666
ref: ${{ env.CHECKOUT_REF }}
6767
- uses: azure/setup-helm@v4
68-
- name: Determine latest Dapr Runtime version
68+
- name: Determine latest Dapr Runtime version (including prerelease)
6969
run: |
70-
helm repo add dapr https://dapr.github.io/helm-charts/ && helm repo update && export RUNTIME_VERSION=$(helm search repo dapr/dapr --devel --versions | awk '/dapr\/dapr/ {print $3; exit}' )
70+
RUNTIME_VERSION=$(curl -s "https://api.github.com/repos/dapr/dapr/releases" | sort -r | grep '"tag_name"' | head -n 1 | cut -d ':' -f2 | tr -d '",v ')
7171
echo "DAPR_RUNTIME_VER=$RUNTIME_VERSION" >> $GITHUB_ENV
7272
echo "Found $RUNTIME_VERSION"
73-
- name: Determine latest Dapr Cli version
73+
- name: Determine latest Dapr Cli version (including prerelease)
7474
run: |
75-
export CLI_VERSION=$(curl "https://api.github.com/repos/dapr/cli/releases/latest" --header 'authorization: Bearer ${{ secrets.GITHUB_TOKEN }}' | jq '.tag_name'| tr -d '",v')
75+
CLI_VERSION=$(curl -s "https://api.github.com/repos/dapr/cli/releases" | sort -r | grep '"tag_name"' | head -n 1 | cut -d ':' -f2 | tr -d '",v ')
7676
echo "DAPR_CLI_VER=$CLI_VERSION" >> $GITHUB_ENV
7777
echo "Found $CLI_VERSION"
7878
- name: Set up Python ${{ matrix.python_ver }}

0 commit comments

Comments
 (0)