From 08985a962fca0851636a3c561604cfc5cc5061c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ole=20Andr=C3=A9=20Vadla=20Ravn=C3=A5s?= Date: Mon, 29 Apr 2024 13:31:30 +0200 Subject: [PATCH] ci: Bump actions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Håvard Sørbø --- .github/workflows/linux.yml | 6 +++--- .github/workflows/qnx.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 8c52766..dac91ba 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -21,19 +21,19 @@ jobs: - name: Check out repo uses: actions/checkout@v4 - name: Log in to the Container registry - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ${{ env.REGISTRY }} username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - name: Extract metadata (tags, labels) for Docker id: meta - uses: docker/metadata-action@v4 + uses: docker/metadata-action@v5 with: images: ${{ env.REGISTRY }}/frida/x-tools-linux-${{ matrix.flavor }} tags: type=raw,value=latest,enable={{ is_default_branch }} - name: Build and push Docker image - uses: docker/build-push-action@v3 + uses: docker/build-push-action@v5 with: context: x-tools file: x-tools/Dockerfile.linux-${{ matrix.flavor }} diff --git a/.github/workflows/qnx.yml b/.github/workflows/qnx.yml index 0f182f1..1ebd0ec 100644 --- a/.github/workflows/qnx.yml +++ b/.github/workflows/qnx.yml @@ -27,19 +27,19 @@ jobs: PATH=$PATH:$QNX_HOST/usr/bin:/etc/qnx/bin make -C qnx-tools - name: Log in to the Container registry - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ${{ env.REGISTRY }} username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - name: Extract metadata (tags, labels) for Docker id: meta - uses: docker/metadata-action@v4 + uses: docker/metadata-action@v5 with: images: ${{ env.REGISTRY }}/frida/qnx-tools tags: type=raw,value=latest,enable={{ is_default_branch }} - name: Build and push Docker image - uses: docker/build-push-action@v3 + uses: docker/build-push-action@v5 with: context: qnx-tools push: true