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

Split steps in check-versions wf for easier debugging #467

Merged
merged 2 commits into from
Aug 22, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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