From 46828b36aabf6ecb1614e4f5eced10c8265d410c Mon Sep 17 00:00:00 2001 From: Elvis de Freitas Date: Mon, 5 Aug 2024 09:39:13 -0300 Subject: [PATCH] cd deps fix --- .github/workflows/actions-deploy.yml | 15 ++++++++++++--- .github/workflows/ci.yml | 2 +- .../close-inative-waiting-feedback-issues.yml | 2 +- .github/workflows/docs.yml | 2 +- .github/workflows/release-latest.yml | 2 +- 5 files changed, 16 insertions(+), 7 deletions(-) diff --git a/.github/workflows/actions-deploy.yml b/.github/workflows/actions-deploy.yml index 0164c59d7..fa713a0b9 100644 --- a/.github/workflows/actions-deploy.yml +++ b/.github/workflows/actions-deploy.yml @@ -17,7 +17,7 @@ env: jobs: primary_release: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 outputs: APP_VERSION: ${{ steps.set_app_version.outputs.APP_VERSION }} steps: @@ -25,6 +25,9 @@ jobs: run: | echo "Releases the Jar and Linux AMD64 version" + - name: Install Deps + run: sudo apt-get install docker-compose -y + - name: Checkout code uses: actions/checkout@v3 with: @@ -67,7 +70,7 @@ jobs: ./build/compressed-artifacts/* linux_amd64_static_release: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 needs: primary_release env: APP_VERSION: ${{ needs.primary_release.outputs.APP_VERSION }} @@ -78,6 +81,9 @@ jobs: - name: Check app version run: echo "$APP_VERSION" + - name: Install Deps + run: sudo apt-get install rename -y + - uses: actions/download-artifact@v3 with: name: native-image-source @@ -105,7 +111,7 @@ jobs: ./build/compressed-artifacts/* linux_arm_release: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 needs: primary_release env: APP_VERSION: ${{ needs.primary_release.outputs.APP_VERSION }} @@ -116,6 +122,9 @@ jobs: - name: Check app version run: echo "$APP_VERSION" + - name: Install Deps + run: sudo apt-get install rename -y + - uses: actions/download-artifact@v3 with: name: native-image-source diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index db949d358..839c2a2e4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,7 @@ concurrency: jobs: tests: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v3 - name: Set up JDK diff --git a/.github/workflows/close-inative-waiting-feedback-issues.yml b/.github/workflows/close-inative-waiting-feedback-issues.yml index 591988b51..2eaf7144b 100644 --- a/.github/workflows/close-inative-waiting-feedback-issues.yml +++ b/.github/workflows/close-inative-waiting-feedback-issues.yml @@ -5,7 +5,7 @@ on: jobs: close-issues: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 permissions: issues: write pull-requests: write diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index e15a35b0d..01274d2a8 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -13,7 +13,7 @@ env: jobs: docs-update: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - name: Checkout code diff --git a/.github/workflows/release-latest.yml b/.github/workflows/release-latest.yml index d40b96ac5..b55d0a6cb 100644 --- a/.github/workflows/release-latest.yml +++ b/.github/workflows/release-latest.yml @@ -15,7 +15,7 @@ env: jobs: release-latest: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 permissions: contents: write