diff --git a/.github/workflows/ci-build-docker-runner.yml b/.github/workflows/ci-build-docker-runner.yml index 2956806..e4686a9 100644 --- a/.github/workflows/ci-build-docker-runner.yml +++ b/.github/workflows/ci-build-docker-runner.yml @@ -16,10 +16,10 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Log in to the Container registry - uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9 + uses: docker/login-action@v3 with: registry: ${{ env.REGISTRY }} username: ${{ github.actor }} @@ -27,14 +27,14 @@ jobs: - name: Extract metadata (tags, labels) for Docker id: meta - uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38 + uses: docker/metadata-action@v5 with: images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} flavor: | latest=true - name: Build and push Docker image - uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc + uses: docker/build-push-action@v6 with: context: ./ci-runner-image/. push: true diff --git a/ci-runner-image/Dockerfile b/ci-runner-image/Dockerfile index 1ba5035..bc84c76 100644 --- a/ci-runner-image/Dockerfile +++ b/ci-runner-image/Dockerfile @@ -6,7 +6,7 @@ ARG ANSIBLE_INVENTORY_FILE_ARG="inventory.ec2" ARG REPO_NAME_ARG ARG GIT_CLONE_URL_ARG -ARG ANSIBLE_VERSION="10.7.0" +ARG ANSIBLE_VERSION="9.13.0" ARG GO_VERSION="1.23.4" ENV REF=$REF_ARG