diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 90f7cfd5..52844dd7 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -19,9 +19,9 @@ jobs: DOCKER_API_VERSION: "1.41" DEBUG_OUTPUT_DIR: /tmp/awx_operator_molecule_test steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - - uses: actions/setup-python@v4 + - uses: actions/setup-python@v5 with: python-version: "3.8" @@ -46,7 +46,7 @@ jobs: - name: Upload artifacts for failed tests if Run Molecule fails if: failure() - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: awx_operator_molecule_test path: ${{ env.DEBUG_OUTPUT_DIR }} @@ -54,12 +54,12 @@ jobs: runs-on: ubuntu-latest name: helm steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - name: Create k8s Kind Cluster - uses: helm/kind-action@v1.8.0 + uses: helm/kind-action@v1.10.0 - name: Build operator image and load into kind run: | @@ -97,7 +97,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout sources - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Check no_log statements run: | diff --git a/.github/workflows/devel.yaml b/.github/workflows/devel.yaml index ced9d909..ebe06e52 100644 --- a/.github/workflows/devel.yaml +++ b/.github/workflows/devel.yaml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest name: Push devel image steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Fail if QUAY_REGISTRY not set run: | @@ -21,7 +21,7 @@ jobs: fi - name: Log into registry ghcr.io - uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d # v3.0.0 + uses: docker/login-action@0d4c9c5ea7693da7b068278f7b52bda2a190a446 # v3.2.0 with: registry: ghcr.io username: ${{ github.actor }} @@ -29,7 +29,7 @@ jobs: - name: Log into registry quay.io - uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d # v3.0.0 + uses: docker/login-action@0d4c9c5ea7693da7b068278f7b52bda2a190a446 # v3.2.0 with: registry: ${{ vars.QUAY_REGISTRY }} username: ${{ secrets.QUAY_USER }} diff --git a/.github/workflows/feature.yml b/.github/workflows/feature.yml index 7198f2eb..5919e5a7 100644 --- a/.github/workflows/feature.yml +++ b/.github/workflows/feature.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest name: Push devel image steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 # needed so that git describe --tag works diff --git a/.github/workflows/label_issue.yml b/.github/workflows/label_issue.yml index d5c52433..0bd49c2a 100644 --- a/.github/workflows/label_issue.yml +++ b/.github/workflows/label_issue.yml @@ -14,7 +14,7 @@ jobs: steps: - name: Label Issue - Needs Triage - uses: github/issue-labeler@v2.4.1 + uses: github/issue-labeler@v3.4 with: repo-token: "${{ secrets.GITHUB_TOKEN }}" not-before: 2021-12-07T07:00:00Z @@ -26,8 +26,8 @@ jobs: runs-on: ubuntu-latest name: Label Issue - Community steps: - - uses: actions/checkout@v3 - - uses: actions/setup-python@v4 + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 - name: Install python requests run: pip install requests - name: Check if user is a member of Ansible org diff --git a/.github/workflows/label_pr.yml b/.github/workflows/label_pr.yml index e1db0aed..d72f200b 100644 --- a/.github/workflows/label_pr.yml +++ b/.github/workflows/label_pr.yml @@ -12,8 +12,8 @@ jobs: runs-on: ubuntu-latest name: Label PR - Community steps: - - uses: actions/checkout@v3 - - uses: actions/setup-python@v4 + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 - name: Install python requests run: pip install requests - name: Check if user is a member of Ansible org diff --git a/.github/workflows/promote.yaml b/.github/workflows/promote.yaml index 5b3afaae..dce19219 100644 --- a/.github/workflows/promote.yaml +++ b/.github/workflows/promote.yaml @@ -37,13 +37,13 @@ jobs: exit 1 fi - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: depth: 0 - name: Log into registry ghcr.io - uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d # v3.0.0 + uses: docker/login-action@0d4c9c5ea7693da7b068278f7b52bda2a190a446 # v3.2.0 with: registry: ghcr.io username: ${{ github.actor }} @@ -51,7 +51,7 @@ jobs: - name: Log into registry quay.io - uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d # v3.0.0 + uses: docker/login-action@0d4c9c5ea7693da7b068278f7b52bda2a190a446 # v3.2.0 with: registry: ${{ env.QUAY_REGISTRY }} username: ${{ secrets.QUAY_USER }} diff --git a/.github/workflows/publish-helm.yml b/.github/workflows/publish-helm.yml index 12c99077..6edbf08c 100644 --- a/.github/workflows/publish-helm.yml +++ b/.github/workflows/publish-helm.yml @@ -11,7 +11,7 @@ jobs: promote: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: depth: 0 diff --git a/.github/workflows/stage.yml b/.github/workflows/stage.yml index a6c12d91..932ff91d 100644 --- a/.github/workflows/stage.yml +++ b/.github/workflows/stage.yml @@ -38,7 +38,7 @@ jobs: exit 0 - name: Checkout awx-operator - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: repository: ${{ github.repository_owner }}/awx-operator path: awx-operator @@ -48,7 +48,7 @@ jobs: python3 -m pip install docker - name: Log into registry ghcr.io - uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d # v3.0.0 + uses: docker/login-action@0d4c9c5ea7693da7b068278f7b52bda2a190a446 # v3.2.0 with: registry: ghcr.io username: ${{ github.actor }}