From 59eb643c4f233d463e6d471c2b95fdec4ba48458 Mon Sep 17 00:00:00 2001 From: Sebastian Stehle Date: Wed, 22 Mar 2023 15:50:49 +0100 Subject: [PATCH] Update GitHub Action Versions (#978) Co-authored-by: github-actions[bot] --- .github/workflows/check-updates.yml | 2 +- .github/workflows/dev.yml | 8 ++++---- .github/workflows/release.yml | 14 +++++++------- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/check-updates.yml b/.github/workflows/check-updates.yml index 9b23e059e..80e4f07df 100644 --- a/.github/workflows/check-updates.yml +++ b/.github/workflows/check-updates.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v3.4.0 with: token: ${{ secrets.WORKFLOW_SECRET }} diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index 293258302..c09a5ef14 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -16,19 +16,19 @@ jobs: runs-on: ubuntu-latest steps: - name: Prepare - Checkout - uses: actions/checkout@v3.1.0 + uses: actions/checkout@v3.4.0 - name: Prepare - Inject short Variables - uses: rlespinasse/github-slug-action@v4.3.2 + uses: rlespinasse/github-slug-action@v4.4.1 - name: Prepare - Set up QEMU uses: docker/setup-qemu-action@v2.1.0 - name: Prepare - Set up Docker Buildx - uses: docker/setup-buildx-action@v2.2.1 + uses: docker/setup-buildx-action@v2.5.0 - name: Build - BUILD - uses: docker/build-push-action@v3.2.0 + uses: docker/build-push-action@v4.0.0 with: load: true build-args: "SQUIDEX__RUNTIME__VERSION=7.0.0-dev-${{ env.BUILD_NUMBER }}" diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index eb165e872..7946794fb 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,19 +11,19 @@ jobs: runs-on: ubuntu-latest steps: - name: Prepare - Checkout - uses: actions/checkout@v3.1.0 + uses: actions/checkout@v3.4.0 - name: Prepare - Inject short Variables - uses: rlespinasse/github-slug-action@v4.3.2 + uses: rlespinasse/github-slug-action@v4.4.1 - name: Prepare - Set up QEMU uses: docker/setup-qemu-action@v2.1.0 - name: Prepare - Set up Docker Buildx - uses: docker/setup-buildx-action@v2.2.1 + uses: docker/setup-buildx-action@v2.5.0 - name: Build - BUILD - uses: docker/build-push-action@v3.2.0 + uses: docker/build-push-action@v4.0.0 with: load: true build-args: "SQUIDEX__BUILD__VERSION=${{ env.GITHUB_REF_SLUG }},SQUIDEX__RUNTIME__VERSION=${{ env.GITHUB_REF_SLUG }}" @@ -91,7 +91,7 @@ jobs: - name: Publish - Get Major Version id: version - uses: rishabhgupta/split-by@v1 + uses: rishabhgupta/split-by@v1.0.1 with: string: "${{ env.GITHUB_REF_SLUG }}" split-by: "." @@ -140,13 +140,13 @@ jobs: - name: Release - Get Changelog Entry id: changelog_reader - uses: mindsers/changelog-reader-action@v2 + uses: mindsers/changelog-reader-action@v2.2.2 with: version: ${{ env.GITHUB_REF_SLUG }} path: ./CHANGELOG.md - name: Release - Publish Binaries - uses: ncipollo/release-action@v1 + uses: ncipollo/release-action@v1.12.0 with: allowUpdates: true artifactErrorsFailBuild: true