summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorAlan Rominger <arominge@redhat.com>2024-07-19 21:33:11 +0200
committerGitHub <noreply@github.com>2024-07-19 21:33:11 +0200
commitfa670e2d7f6c9aecee8c509edcd2d3ec96283fd6 (patch)
tree3040d5c1a62914646c5ffc8e4e5b1b305aeccb2d /.github
parentUpdate test to conform with new DAB change (#15385) (diff)
downloadawx-fa670e2d7f6c9aecee8c509edcd2d3ec96283fd6.tar.xz
awx-fa670e2d7f6c9aecee8c509edcd2d3ec96283fd6.zip
Upgrade to v4 checkout, hide output (#15322)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml26
-rw-r--r--.github/workflows/devel_images.yml4
-rw-r--r--.github/workflows/docs.yml4
-rw-r--r--.github/workflows/label_issue.yml5
-rw-r--r--.github/workflows/label_pr.yml5
-rw-r--r--.github/workflows/promote.yml4
-rw-r--r--.github/workflows/stage.yml9
-rw-r--r--.github/workflows/update_dependabot_prs.yml4
-rw-r--r--.github/workflows/upload_schema.yml4
9 files changed, 48 insertions, 17 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 3b6258672f..ca30e2a1a2 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -38,7 +38,9 @@ jobs:
- name: ui-test-general
command: make ui-test-general
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
+ with:
+ show-progress: false
- name: Build awx_devel image for running checks
uses: ./.github/actions/awx_devel_image
@@ -52,7 +54,9 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
+ with:
+ show-progress: false
- uses: ./.github/actions/run_awx_devel
id: awx
@@ -70,13 +74,15 @@ jobs:
DEBUG_OUTPUT_DIR: /tmp/awx_operator_molecule_test
steps:
- name: Checkout awx
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
with:
+ show-progress: false
path: awx
- name: Checkout awx-operator
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
with:
+ show-progress: false\
repository: ansible/awx-operator
path: awx-operator
@@ -130,7 +136,9 @@ jobs:
strategy:
fail-fast: false
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
+ with:
+ show-progress: false
# The containers that GitHub Actions use have Ansible installed, so upgrade to make sure we have the latest version.
- name: Upgrade ansible-core
@@ -154,7 +162,9 @@ jobs:
- name: r-z0-9
regex: ^[r-z0-9]
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
+ with:
+ show-progress: false
- uses: ./.github/actions/run_awx_devel
id: awx
@@ -200,7 +210,9 @@ jobs:
strategy:
fail-fast: false
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
+ with:
+ show-progress: false
- name: Upgrade ansible-core
run: python3 -m pip install --upgrade ansible-core
diff --git a/.github/workflows/devel_images.yml b/.github/workflows/devel_images.yml
index 6cc847506e..07975f4b39 100644
--- a/.github/workflows/devel_images.yml
+++ b/.github/workflows/devel_images.yml
@@ -35,7 +35,9 @@ jobs:
exit 0
if: matrix.build-targets.image-name == 'awx' && !endsWith(github.repository, '/awx')
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
+ with:
+ show-progress: false
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml
index a5dc51fb59..3d17201f3d 100644
--- a/.github/workflows/docs.yml
+++ b/.github/workflows/docs.yml
@@ -8,7 +8,9 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
+ with:
+ show-progress: false
- name: install tox
run: pip install tox
diff --git a/.github/workflows/label_issue.yml b/.github/workflows/label_issue.yml
index c5a2b2c7cb..9f666588c9 100644
--- a/.github/workflows/label_issue.yml
+++ b/.github/workflows/label_issue.yml
@@ -30,7 +30,10 @@ jobs:
timeout-minutes: 20
name: Label Issue - Community
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
+ with:
+ show-progress: false
+
- uses: actions/setup-python@v4
- name: Install python requests
run: pip install requests
diff --git a/.github/workflows/label_pr.yml b/.github/workflows/label_pr.yml
index 15571a866c..94d3da7616 100644
--- a/.github/workflows/label_pr.yml
+++ b/.github/workflows/label_pr.yml
@@ -29,7 +29,10 @@ jobs:
timeout-minutes: 20
name: Label PR - Community
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
+ with:
+ show-progress: false
+
- uses: actions/setup-python@v4
- name: Install python requests
run: pip install requests
diff --git a/.github/workflows/promote.yml b/.github/workflows/promote.yml
index 604485d328..d84e4ad81e 100644
--- a/.github/workflows/promote.yml
+++ b/.github/workflows/promote.yml
@@ -32,7 +32,9 @@ jobs:
echo "TAG_NAME=${{ github.event.release.tag_name }}" >> $GITHUB_ENV
- name: Checkout awx
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
+ with:
+ show-progress: false
- name: Get python version from Makefile
run: echo py_version=`make PYTHON_VERSION` >> $GITHUB_ENV
diff --git a/.github/workflows/stage.yml b/.github/workflows/stage.yml
index a0fe4dea7c..d348278eff 100644
--- a/.github/workflows/stage.yml
+++ b/.github/workflows/stage.yml
@@ -45,19 +45,22 @@ jobs:
exit 0
- name: Checkout awx
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
with:
+ show-progress: false
path: awx
- name: Checkout awx-operator
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
with:
+ show-progress: false
repository: ${{ github.repository_owner }}/awx-operator
path: awx-operator
- name: Checkout awx-logos
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
with:
+ show-progress: false
repository: ansible/awx-logos
path: awx-logos
diff --git a/.github/workflows/update_dependabot_prs.yml b/.github/workflows/update_dependabot_prs.yml
index bcb0b7674a..dc858d46df 100644
--- a/.github/workflows/update_dependabot_prs.yml
+++ b/.github/workflows/update_dependabot_prs.yml
@@ -13,7 +13,9 @@ jobs:
steps:
- name: Checkout branch
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
+ with:
+ show-progress: false
- name: Update PR Body
env:
diff --git a/.github/workflows/upload_schema.yml b/.github/workflows/upload_schema.yml
index 158e297992..c7901eb3a9 100644
--- a/.github/workflows/upload_schema.yml
+++ b/.github/workflows/upload_schema.yml
@@ -18,7 +18,9 @@ jobs:
packages: write
contents: read
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
+ with:
+ show-progress: false
- name: Get python version from Makefile
run: echo py_version=`make PYTHON_VERSION` >> $GITHUB_ENV