Skip to content

Commit

Permalink
fix: update uses statement
Browse files Browse the repository at this point in the history
  • Loading branch information
EstebanBorai committed Dec 14, 2023
1 parent 9cb96f4 commit 53fd00e
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cd_dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
if: ${{ matrix.cluster_type == 'k8' }}
run: ./k8-util/cluster/reset-k3d.sh
- name: Setup Fluvio
uses: infinyon/fluvio/.github/actions/setup-fluvio
uses: infinyon/fluvio/.github/actions/setup-fluvio@master
with:
version: latest
- name: Install Local Fluvio cluster
Expand Down Expand Up @@ -207,7 +207,7 @@ jobs:
echo "FLUVIO_VERSION=latest" | tee -a $GITHUB_ENV
- name: Setup Fluvio
uses: infinyon/fluvio/.github/actions/setup-fluvio
uses: infinyon/fluvio/.github/actions/setup-fluvio@master
with:
version: ${{ env.FLUVIO_VERSION }}

Expand Down Expand Up @@ -247,7 +247,7 @@ jobs:
- name: Setup bin path
run: echo "~/.fluvio/bin" >> $GITHUB_PATH
- name: Setup Fluvio
uses: infinyon/fluvio/.github/actions/setup-fluvio
uses: infinyon/fluvio/.github/actions/setup-fluvio@master
with:
version: ${{ matrix.cluster_version }}
- name: Start Fluvio Cluster
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cd_dev_mac.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
brew install kind
kind create cluster --config k8-util/cluster/kind.yaml
- name: Setup Fluvio
uses: infinyon/fluvio/.github/actions/setup-fluvio
uses: infinyon/fluvio/.github/actions/setup-fluvio@master
with:
version: latest
- name: Install Local Fluvio cluster
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/cd_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
if: matrix.version == 'semver'
run: echo "VERSION=$EXPECTED_VERSION" | tee -a $GITHUB_ENV
- name: Setup Fluvio
uses: infinyon/fluvio/.github/actions/setup-fluvio
uses: infinyon/fluvio/.github/actions/setup-fluvio@master
with:
version: ${{ env.VERSION }}
- name: Verify installer output
Expand Down Expand Up @@ -117,7 +117,7 @@ jobs:
- run: echo "VERSION=$EXPECTED_VERSION" | tee -a $GITHUB_ENV
- name: Setup Fluvio
uses: infinyon/fluvio/.github/actions/setup-fluvio
uses: infinyon/fluvio/.github/actions/setup-fluvio@master
- name: Start cluster
timeout-minutes: 10
run: |
Expand Down Expand Up @@ -162,7 +162,7 @@ jobs:
PREV_STABLE_VERSION=$(gh release list | awk '{print $1}' | sed 's/^dev//' | grep "v" | sed 's/^v//' | head -2 | tail -1)
- name: Setup Fluvio
uses: infinyon/fluvio/.github/actions/setup-fluvio
uses: infinyon/fluvio/.github/actions/setup-fluvio@master
with:
version: ${{ env.PREV_STABLE_VERSION }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -947,7 +947,7 @@ jobs:
# Download stable, this will load into ~/.fluvio/bin which will be in PATH
# from now, fluvio will be stable
- name: Setup Fluvio
uses: infinyon/fluvio/.github/actions/setup-fluvio
uses: infinyon/fluvio/.github/actions/setup-fluvio@master

# Download artifacts from development build
- name: Download artifact - fluvio
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/connector-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse
steps:
- name: Setup Fluvio
uses: infinyon/fluvio/.github/actions/setup-fluvio
uses: infinyon/fluvio/.github/actions/setup-fluvio@master
- name: Install Fluvio CDK
run: fluvio install cdk --develop
- name: Fluvio Login
Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse
steps:
- name: Setup Fluvio
uses: infinyon/fluvio/.github/actions/setup-fluvio
uses: infinyon/fluvio/.github/actions/setup-fluvio@master
- name: Install Fluvio CDK
run: fluvio install cdk --develop
- name: Fluvio Login
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/hourly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ jobs:
run: |
./k8-util/cluster/reset-k3d.sh
- name: Setup Fluvio
uses: infinyon/fluvio/.github/actions/setup-fluvio
uses: infinyon/fluvio/.github/actions/setup-fluvio@master
with:
version: latest
- name: Start Fluvio Cluster
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/smartmodule-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
CLOUD_LOGIN_PW: ${{ !inputs.target_prod && secrets.ORG_HUB_SA_PASSWD_DEV || secrets.ORG_HUB_SA_PASSWD_PROD }}
steps:
- name: Setup Fluvio
uses: infinyon/fluvio/.github/actions/setup-fluvio
uses: infinyon/fluvio/.github/actions/setup-fluvio@master
- name: Install Fluvio SMDK
run: fluvio install smdk
- name: Fluvio Login
Expand Down

0 comments on commit 53fd00e

Please sign in to comment.