diff options
author | Rick Elrod <rick@elrod.me> | 2023-08-31 06:58:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-31 06:58:57 +0200 |
commit | 5e105c2cbd3fe828160540b3043cf6f605ed26be (patch) | |
tree | 8de1480d6511ac81c43ebb1fa50875adb1505c3b /.github/workflows/e2e_test.yml | |
parent | Consume `job_explanation` from runner, fix error reporting error (#13482) (diff) | |
download | awx-5e105c2cbd3fe828160540b3043cf6f605ed26be.tar.xz awx-5e105c2cbd3fe828160540b3043cf6f605ed26be.zip |
[CI] Update GHA actions to sate some warnings emitted by test infrastructure (#14398)
Signed-off-by: Rick Elrod <rick@elrod.me>
Diffstat (limited to '.github/workflows/e2e_test.yml')
-rw-r--r-- | .github/workflows/e2e_test.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/e2e_test.yml b/.github/workflows/e2e_test.yml index 788042baed..22affd08ef 100644 --- a/.github/workflows/e2e_test.yml +++ b/.github/workflows/e2e_test.yml @@ -19,13 +19,13 @@ jobs: job: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Get python version from Makefile run: echo py_version=`make PYTHON_VERSION` >> $GITHUB_ENV - name: Install python ${{ env.py_version }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: ${{ env.py_version }} @@ -53,7 +53,7 @@ jobs: docker pull quay.io/awx/awx_cypress_base:latest - name: Checkout test project - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: repository: ${{ github.repository_owner }}/tower-qa ssh-key: ${{ secrets.QA_REPO_KEY }} |