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

Commit

Permalink
Merge pull request #33 from DaVarga/main
Browse files Browse the repository at this point in the history
Fix #32 installation of yq in image-check actions
  • Loading branch information
thetredev authored Sep 29, 2023
2 parents 4949098 + 93b0134 commit 9fdf96c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/base-csgo-image-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ jobs:
if: ${{ steps.checkpr_csgo.outputs.result == 'continue' }}
run: |
# Install yq
sudo apt-get update
sudo apt-get install -y --no-install-recommends yq
sudo wget https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 -O /usr/bin/yq
sudo chmod +x /usr/bin/yq
# Prepare git user
git config user.name github-actions
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/base-legacy-image-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ jobs:
if: ${{ steps.checkpr_legacy.outputs.result == 'continue' }}
run: |
# Install yq
sudo apt-get update
sudo apt-get install -y --no-install-recommends yq
sudo wget https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 -O /usr/bin/yq
sudo chmod +x /usr/bin/yq
# Prepare git user
git config user.name github-actions
Expand Down

0 comments on commit 9fdf96c

Please sign in to comment.