From 578d1eb43d48e4ae92746315dd529d9476897887 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 23 Oct 2023 08:08:09 +0000 Subject: [PATCH] chore(deps): update ci-actions --- .github/workflows/ci.yml | 4 ++-- .github/workflows/codeql.yml | 2 +- .github/workflows/docker.yml | 10 +++++----- .github/workflows/pylinter.yml | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1e8ba6553..2546904ef 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: pull-requests: write steps: - name: Checking out repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up Python (latest) uses: actions/setup-python@v4 with: @@ -58,7 +58,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checking out repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up Python (latest) uses: actions/setup-python@v4 with: diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 834be5c0c..db9b29515 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -24,7 +24,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Initialize CodeQL uses: github/codeql-action/init@v2 diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 160e7ea43..a67dbadc7 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -23,21 +23,21 @@ jobs: dockerfile: production.dockerfile steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up QEMU - uses: docker/setup-qemu-action@v2 + uses: docker/setup-qemu-action@v3 with: platforms: arm64 - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v2 + uses: docker/setup-buildx-action@v3 - name: Log into registry ${{ env.REGISTRY }} - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ghcr.io username: ${{ github.actor }} password: ${{ secrets.GH_TOKEN }} - name: Build and push Docker image - uses: docker/build-push-action@v3 + uses: docker/build-push-action@v5 with: context: ${{ matrix.component }} push: ${{ github.event_name != 'pull_request' && github.ref == 'refs/heads/dev' }} diff --git a/.github/workflows/pylinter.yml b/.github/workflows/pylinter.yml index 90046def2..7351e58c5 100644 --- a/.github/workflows/pylinter.yml +++ b/.github/workflows/pylinter.yml @@ -22,7 +22,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v4 with: