diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index b6df96c..c67907f 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -40,7 +40,7 @@ jobs: matrix: node: [ '15' ] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 1 ref: ${{ github.head_ref }} @@ -75,7 +75,7 @@ jobs: matrix: node: [ '15' ] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Setup Node ${{ matrix.node }} uses: actions/setup-node@v2.5.1 with: @@ -106,7 +106,7 @@ jobs: matrix: node: [ '15' ] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Setup Node ${{ matrix.node }} uses: actions/setup-node@v2.5.1 with: diff --git a/.github/workflows/commitlint.yml b/.github/workflows/commitlint.yml index aa0e8d6..0c795cb 100644 --- a/.github/workflows/commitlint.yml +++ b/.github/workflows/commitlint.yml @@ -6,7 +6,7 @@ jobs: if: "!github.actor == 'dependabot'" runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 - uses: wagoid/commitlint-github-action@v4.1.9 \ No newline at end of file diff --git a/.github/workflows/release-tag.yml b/.github/workflows/release-tag.yml index e2c3b40..9470087 100644 --- a/.github/workflows/release-tag.yml +++ b/.github/workflows/release-tag.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Create Release for Tag id: release_tag diff --git a/.github/workflows/serverless.yml b/.github/workflows/serverless.yml index c7ca6cd..8e88753 100644 --- a/.github/workflows/serverless.yml +++ b/.github/workflows/serverless.yml @@ -28,11 +28,11 @@ jobs: - name: Checkout Latest Stable Version if: ${{ github.event.inputs.version }} == 'latest' - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Checkout ${{ github.event.inputs.version }} if: github.event.inputs.version != 'latest' - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: ref: ${{ github.event.inputs.version }}