From 8230a0ae30a67bf6f24ae039e2a6fe83210c601f Mon Sep 17 00:00:00 2001 From: antondlr Date: Thu, 29 Feb 2024 14:34:03 +0100 Subject: [PATCH] bump actions versions --- .github/workflows/docker.yml | 8 ++++---- .github/workflows/release.yml | 8 ++++---- .github/workflows/ui-tests.yml | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 888ff512..26ffb60f 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -47,9 +47,9 @@ jobs: needs: [extract-version] steps: - name: Checkout sources - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Use node 18 - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 18 cache: 'yarn' @@ -82,8 +82,8 @@ jobs: VERSION: ${{ needs.extract-version.outputs.VERSION }} VERSION_SUFFIX: ${{ needs.extract-version.outputs.VERSION_SUFFIX }} steps: - - uses: actions/checkout@v3 - - uses: docker/setup-qemu-action@v2 + - uses: actions/checkout@v4 + - uses: docker/setup-qemu-action@v3 - name: Dockerhub login run: | echo "${DOCKER_PASSWORD}" | docker login --username ${DOCKER_USERNAME} --password-stdin diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8a6a4bd8..331d2d0e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout sources - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Extract version run: echo "VERSION=$(echo ${GITHUB_REF#refs/tags/})" >> $GITHUB_OUTPUT # Used for running without tags @@ -48,9 +48,9 @@ jobs: needs: extract-version steps: - name: Checkout sources - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Use node 18 - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 18 - name: Configure Yarn Timeout @@ -141,7 +141,7 @@ jobs: steps: # This is necessary for generating the changelog. It has to come before "Download Artifacts" or else it deletes the artifacts. - name: Checkout sources - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/.github/workflows/ui-tests.yml b/.github/workflows/ui-tests.yml index bcf74459..3de5afe7 100644 --- a/.github/workflows/ui-tests.yml +++ b/.github/workflows/ui-tests.yml @@ -14,7 +14,7 @@ jobs: visual-and-composition: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: fetch-depth: 0 # Required to retrieve git history - name: Install dependencies