diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1eeedb748e..fd4a84265a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,7 +10,7 @@ jobs: if: '!github.event.deleted' runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: # Required to fetch all commits and tags fetch-depth: 0 diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index e96021fcbf..c5f1a956e4 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -33,7 +33,7 @@ jobs: name: Typescript compile check runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Setup Node uses: actions/setup-node@v3 with: @@ -42,7 +42,7 @@ jobs: registry-url: 'https://npm.pkg.github.com' env: NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Install Dependencies run: yarn install --frozen-lockfile - name: Run typescript compile check @@ -62,7 +62,7 @@ jobs: registry-url: 'https://npm.pkg.github.com' env: NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Install Dependencies run: yarn install --frozen-lockfile @@ -80,7 +80,7 @@ jobs: if: '!github.event.deleted' runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Setup Node uses: actions/setup-node@v3 with: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7f77d56158..45a0ff90d4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,7 +11,7 @@ jobs: name: Upload Release Asset runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: # Required to fetch all commits and tags fetch-depth: 0