Skip to content

Commit

Permalink
Fix reusable workflow inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
petrutlucian94 committed Dec 11, 2024
1 parent f2d409e commit 095b0bf
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/get-e2e-test-tags.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
name: Build snap
runs-on: ubuntu-latest
outputs:
test-tags: ${{ steps.get-tags.outputs.snap-artifact }}
test-tags: ${{ steps.get-tags.outputs.test-tags }}
steps:
- name: Checking out repo
uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/integration-informing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ jobs:
matrix:
os: ["ubuntu:20.04"]
patch: ["moonray"]
needs: build
needs: [build-snap, get-e2e-test-tags]
uses: ./.github/workflows/run-e2e-tests.yaml
with:
arch: amd64
os: ${{ matrix.os }}
test-tags: ${{ jobs.get-e2e-test-tags.outputs.test-tags}}
test-tags: ${{ needs.get-e2e-test-tags.outputs.test-tags}}
artifact: k8s-${{ matrix.patch }}.snap
10 changes: 5 additions & 5 deletions .github/workflows/integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,17 +51,17 @@ jobs:
fail-fast: false
matrix:
os: ["ubuntu:20.04", "ubuntu:22.04", "ubuntu:24.04"]
needs: build
needs: [build-snap, get-e2e-test-tags]
uses: ./.github/workflows/run-e2e-tests.yaml
with:
arch: amd64
os: ${{ matrix.os }}
test-tags: ${{ jobs.get-e2e-test-tags.outputs.test-tags}}
artifact: ${{ jobs.build-snap.outputs.snap-artifact}}
test-tags: ${{ needs.get-e2e-test-tags.outputs.test-tags}}
artifact: ${{ needs.build-snap.outputs.snap-artifact}}

security-scan:
name: Security scan
needs: build
needs: build-snap
uses: ./.github/workflows/security-scan.yaml
with:
artifact: ${{ jobs.build-snap.outputs.snap-artifact}}
artifact: ${{ needs.build-snap.outputs.snap-artifact}}

0 comments on commit 095b0bf

Please sign in to comment.