Skip to content

Commit 26a6260

Browse files
authored
Merge pull request #106 from fattureincloud/fix-workflow
Fix workflow
2 parents 3b94917 + 2ad5095 commit 26a6260

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/bump-version.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ jobs:
2323
- id: setup-libraries
2424
name: Install libraries
2525
run: |
26-
sudo add-apt-repository ppa:rmescandon/yq -y
27-
sudo apt update
28-
sudo apt install yq -y
26+
wget https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 -O /usr/local/bin/yq
27+
chmod +x /usr/local/bin/yq
28+
yq --version
2929
3030
- id: read-openapi-version
3131
name: Read OpenAPI Version

.github/workflows/release-version.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ jobs:
4343
run: |
4444
npm install -g yarn
4545
yarn global add standard-version
46-
sudo add-apt-repository ppa:rmescandon/yq -y
47-
sudo apt update
48-
sudo apt install yq -y
46+
wget https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 -O /usr/local/bin/yq
47+
chmod +x /usr/local/bin/yq
48+
yq --version
4949
cd ./scripts/
5050
yarn
5151

0 commit comments

Comments
 (0)