Skip to content

Commit

Permalink
ci: install oras specifally for azure e2e tests
Browse files Browse the repository at this point in the history
When the runners were fixed to 24.04 oras wasn't part of the base
installation anymore.

Signed-off-by: Magnus Kulke <[email protected]>
  • Loading branch information
mkulke authored and wainersm committed Nov 18, 2024
1 parent 273f945 commit 5104c47
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/azure-e2e-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -170,8 +170,14 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Extract go version number
run: echo "GO_VERSION=$(yq -e '.tools.golang' versions.yaml)" >> "$GITHUB_ENV"
- name: Extract version numbers
run: |
echo "GO_VERSION=$(yq -e '.tools.golang' versions.yaml)" >> "$GITHUB_ENV"
echo "ORAS_VERSION=$(yq -e '.tools.oras' versions.yaml)" >> "$GITHUB_ENV"
- uses: oras-project/setup-oras@v1
with:
version: ${{ env.ORAS_VERSION }}

- name: Set up Go environment
uses: actions/setup-go@v5
Expand Down

0 comments on commit 5104c47

Please sign in to comment.