From 252e7f0b562364092f49b8c9e9d9c88caca3283a Mon Sep 17 00:00:00 2001 From: Or Rubin Date: Tue, 26 Nov 2024 15:15:47 +0200 Subject: [PATCH] chore: upgrade checkout action (#618) --- .github/workflows/deploy.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 8c4fcb53..34ee1dc0 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ env.TARGET_REF }} token: ${{ secrets.GPR_TOKEN }} @@ -26,7 +26,7 @@ jobs: runs-on: ubuntu-latest needs: install-deps steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: ref: ${{ env.TARGET_REF }} token: ${{ secrets.GPR_TOKEN }} @@ -45,7 +45,7 @@ jobs: - name: Pack artifacts run: npm pack - - uses: svenstaro/upload-release-action@2.7.0 + - uses: svenstaro/upload-release-action@2.9.0 with: repo_token: ${{ secrets.GITHUB_TOKEN }} file: ./brightsec-cli-* @@ -87,7 +87,7 @@ jobs: runs-on: ${{ matrix.os }} container: ${{ matrix.container }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: ref: ${{ env.TARGET_REF }} token: ${{ secrets.GPR_TOKEN }} @@ -121,14 +121,14 @@ jobs: run: .\tools\scripts\build-msi.ps1 shell: pwsh - - uses: svenstaro/upload-release-action@2.7.0 + - uses: svenstaro/upload-release-action@2.9.0 with: repo_token: ${{ secrets.GITHUB_TOKEN }} file: ${{ startsWith(matrix.os, 'win') && '.\bin\cli.exe' || './bin/cli' }} asset_name: ${{ format('bright-cli-{0}-x64{1}', matrix.target, startsWith(matrix.os, 'win') && '.exe' || '') }} tag: ${{ github.ref }} - - uses: svenstaro/upload-release-action@2.7.0 + - uses: svenstaro/upload-release-action@2.9.0 if: startsWith(matrix.os, 'win') with: repo_token: ${{ secrets.GITHUB_TOKEN }} @@ -140,7 +140,7 @@ jobs: runs-on: ubuntu-latest needs: build steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: ref: ${{ env.TARGET_REF }} token: ${{ secrets.GPR_TOKEN }}