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 59df7a6
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 29 deletions.
15 changes: 14 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 @@ -37,6 +43,13 @@ jobs:
- name: Check release.yaml
run: make check-release-yaml

- name: Release PR Chekpoints
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"
fi
- name: Validate
run: |
if [[ "${{ github.ref }}" == refs/heads/release-v* ]]; then
Expand Down
28 changes: 0 additions & 28 deletions .github/workflows/checkpoints.yaml

This file was deleted.

0 comments on commit 59df7a6

Please sign in to comment.