Skip to content
This repository has been archived by the owner on Mar 22, 2024. It is now read-only.

Commit

Permalink
Split steps in check-versions wf for easier debugging (#467)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcofranssen committed Aug 22, 2023
1 parent d91403a commit 71ac5af
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions .github/workflows/check-versions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ jobs:
- name: Setup go
uses: actions/setup-go@v4.1.0
with:
go-version: '1.21'

- name: Setup crane
uses: imjasonh/setup-crane@v0.3
Expand All @@ -42,13 +44,17 @@ jobs:
with:
python-version: '3.9'

- name: Update image tags
run: |
go install github.com/mikefarah/yq/v4@latest
- name: Install ubuntu packages
run: sudo apt-get install wget apt-transport-https gnupg lsb-release

sudo apt-get install wget apt-transport-https gnupg lsb-release
pip install -r .github/scripts/requirements.txt
- name: Install yq
run: go install github.com/mikefarah/yq/v4@latest

- name: Install python dependencies
run: pip install -r .github/scripts/requirements.txt

- name: Update image tags
run: |
./.github/scripts/update-tags.sh
git diff
Expand Down

0 comments on commit 71ac5af

Please sign in to comment.