diff --git a/.github/workflows/api-container.yml b/.github/workflows/api-container.yml index f62c427..773d856 100644 --- a/.github/workflows/api-container.yml +++ b/.github/workflows/api-container.yml @@ -45,8 +45,6 @@ jobs: echo "workflow_envs=$workflow_envs" >> $GITHUB_OUTPUT echo "Running $workflow_type pipeline in environments: $workflow_envs" >> $GITHUB_STEP_SUMMARY - - name: Install jq - run: sudo apt-get update && sudo apt-get install -y jq - name: Extract Version id: version shell: bash diff --git a/.github/workflows/pr-validation.yml b/.github/workflows/pr-validation.yml index 3797c32..6061a50 100644 --- a/.github/workflows/pr-validation.yml +++ b/.github/workflows/pr-validation.yml @@ -1,19 +1,19 @@ -name: PR Validation -on: - pull_request: - types: [opened] - -permissions: - contents: read - -jobs: - pr-validation: - permissions: - contents: read - pull-requests: write - runs-on: ['self-hosted', 'pi'] - steps: - - uses: TimonVS/pr-labeler-action@v5 - with: - repo-token: ${{ secrets.GITHUB_TOKEN }} - configuration-path: .github/configs/pr-labeler-configuration.yml +name: PR Validation +on: + pull_request: + types: [opened] + +permissions: + contents: read + +jobs: + pr-validation: + permissions: + contents: read + pull-requests: write + runs-on: 'ubuntu-latest' + steps: + - uses: TimonVS/pr-labeler-action@v5 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + configuration-path: .github/configs/pr-labeler-configuration.yml diff --git a/.github/workflows/web-container.yml b/.github/workflows/web-container.yml index ab910e5..550d526 100644 --- a/.github/workflows/web-container.yml +++ b/.github/workflows/web-container.yml @@ -18,7 +18,7 @@ on: - web/** jobs: determine-workflow: - runs-on: ['self-hosted','pi'] + runs-on: 'ubuntu-latest' outputs: workflow_type: ${{ steps.workflow.outputs.workflow_type }} workflow_envs: ${{ steps.workflow.outputs.workflow_envs }} @@ -45,8 +45,6 @@ jobs: echo "workflow_envs=$workflow_envs" >> $GITHUB_OUTPUT echo "Running $workflow_type pipeline in environments: $workflow_envs" >> $GITHUB_STEP_SUMMARY - - name: Install jq - run: sudo apt-get update && sudo apt-get install -y jq - name: Extract Version id: version shell: bash diff --git a/.github/workflows/web-deploy-nonprod.yml b/.github/workflows/web-deploy-nonprod.yml index f22eaf1..0642e75 100644 --- a/.github/workflows/web-deploy-nonprod.yml +++ b/.github/workflows/web-deploy-nonprod.yml @@ -26,7 +26,7 @@ on: COOLIFY_TOKEN: {} jobs: check-inputs: - runs-on: ['self-hosted','pi'] + runs-on: 'ubuntu-latest' environment: ${{ inputs.environments }} steps: - name: Check secrets present @@ -60,7 +60,7 @@ jobs: needs: check-inputs if: needs.check-inputs.result == 'success' && inputs.workflow_type != 'release' environment: ${{ inputs.environments }} - runs-on: ['self-hosted','pi'] + runs-on: 'ubuntu-latest' permissions: contents: read packages: write @@ -83,7 +83,7 @@ jobs: needs: build if: needs.build.result == 'success' && inputs.workflow_type != 'release' environment: ${{ inputs.environments }} - runs-on: ['self-hosted','pi'] + runs-on: 'ubuntu-latest' permissions: contents: read packages: write diff --git a/.github/workflows/web-deploy-prod.yml b/.github/workflows/web-deploy-prod.yml index af55ba8..d02cc97 100644 --- a/.github/workflows/web-deploy-prod.yml +++ b/.github/workflows/web-deploy-prod.yml @@ -26,7 +26,7 @@ on: COOLIFY_TOKEN: {} jobs: check-inputs: - runs-on: ['self-hosted','pi'] + runs-on: 'ubuntu-latest' environment: ${{ inputs.environments }} steps: - name: Check secrets present @@ -60,7 +60,7 @@ jobs: needs: check-inputs if: needs.check-inputs.result == 'success' && inputs.workflow_type == 'release' environment: ${{ inputs.environments }} - runs-on: ['self-hosted','pi'] + runs-on: 'ubuntu-latest' permissions: contents: read packages: write @@ -83,7 +83,7 @@ jobs: needs: build if: needs.build.result == 'success' && inputs.workflow_type == 'release' environment: ${{ inputs.environments }} - runs-on: ['self-hosted','pi'] + runs-on: 'ubuntu-latest' permissions: contents: read packages: write