Skip to content

Commit

Permalink
updating dependencies for gha job
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholasSUSE committed Dec 10, 2024
1 parent 835a720 commit caa96d2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 29 deletions.
9 changes: 8 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,13 @@ jobs:
container: registry.suse.com/bci/bci-base:latest
steps:
- name: install dependencies
run: zypper install -y docker jq git
run: zypper --non-interactive install docker jq git make go awk
- name: install gh
run: |
mkdir -p /tmp/gh
curl -fsL https://github.com/cli/cli/releases/download/v2.63.2/gh_2.63.2_linux_amd64.tar.gz | tar xvzf - --strip-components=1 -C /tmp/gh
mv /tmp/gh/bin/gh /usr/bin/gh
chmod +x /usr/bin/gh
- name: Checkout code
uses: actions/checkout@v4
- name: Git safe directory
Expand All @@ -40,6 +46,7 @@ jobs:
- name: Validate
run: |
if [[ "${{ github.ref }}" == refs/heads/release-v* ]]; then
make validate-release-charts BRANCH=${{ github.event.pull_request.base.ref }} GH_TOKEN=${{ secrets.GITHUB_TOKEN }} PR_NUMBER=${{ github.event.pull_request.number }}
echo "Validating remote release branch"
make validate remote=true
else
Expand Down
28 changes: 0 additions & 28 deletions .github/workflows/checkpoints.yaml

This file was deleted.

0 comments on commit caa96d2

Please sign in to comment.