diff --git a/.github/workflows/approve-pr.yml b/.github/workflows/approve-pr.yml index e03b481..3628d9e 100644 --- a/.github/workflows/approve-pr.yml +++ b/.github/workflows/approve-pr.yml @@ -36,7 +36,7 @@ jobs: skip-commit-verification: true - id: checkout name: Checkout ${{ github.head_ref }} - uses: actions/checkout@v3.4.0 + uses: actions/checkout@v3.5.0 with: persist-credentials: false ref: ${{ github.head_ref }} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 56562db..6288356 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -58,7 +58,7 @@ jobs: uses: hmarr/debug-action@v2.1.0 - id: checkout name: Checkout ${{ env.REF }} - uses: actions/checkout@v3.4.0 + uses: actions/checkout@v3.5.0 with: ref: ${{ env.REF }} - id: node @@ -89,7 +89,7 @@ jobs: steps: - id: checkout name: Checkout ${{ env.REF }} - uses: actions/checkout@v3.4.0 + uses: actions/checkout@v3.5.0 with: fetch-depth: 0 ref: ${{ env.REF }} @@ -115,7 +115,7 @@ jobs: steps: - id: checkout name: Checkout ${{ env.REF }} - uses: actions/checkout@v3.4.0 + uses: actions/checkout@v3.5.0 with: fetch-depth: 0 ref: ${{ env.REF }} @@ -138,7 +138,7 @@ jobs: steps: - id: checkout name: Checkout ${{ env.REF }} - uses: actions/checkout@v3.4.0 + uses: actions/checkout@v3.5.0 with: ref: ${{ env.REF }} - id: node @@ -165,7 +165,7 @@ jobs: steps: - id: checkout name: Checkout ${{ env.REF }} - uses: actions/checkout@v3.4.0 + uses: actions/checkout@v3.5.0 with: ref: ${{ env.REF }} - id: node @@ -192,7 +192,7 @@ jobs: steps: - id: checkout name: Checkout ${{ env.REF }} - uses: actions/checkout@v3.4.0 + uses: actions/checkout@v3.5.0 with: ref: ${{ env.REF }} - id: node @@ -229,7 +229,7 @@ jobs: steps: - id: checkout name: Checkout ${{ env.REF }} - uses: actions/checkout@v3.4.0 + uses: actions/checkout@v3.5.0 with: ref: ${{ env.REF }} - id: node @@ -274,7 +274,7 @@ jobs: steps: - id: checkout name: Checkout ${{ env.REF }} - uses: actions/checkout@v3.4.0 + uses: actions/checkout@v3.5.0 with: ref: ${{ env.REF }} - id: node @@ -322,7 +322,7 @@ jobs: steps: - id: checkout name: Checkout ${{ env.REF }} - uses: actions/checkout@v3.4.0 + uses: actions/checkout@v3.5.0 with: ref: ${{ env.REF }} - id: node diff --git a/.github/workflows/dependabot-auto.yml b/.github/workflows/dependabot-auto.yml index 79e35b4..7566b8a 100644 --- a/.github/workflows/dependabot-auto.yml +++ b/.github/workflows/dependabot-auto.yml @@ -39,7 +39,7 @@ jobs: skip-commit-verification: true - id: checkout name: Checkout ${{ github.head_ref }} - uses: actions/checkout@v3.4.0 + uses: actions/checkout@v3.5.0 with: persist-credentials: ${{ steps.metadata.outputs.package-ecosystem == 'npm_and_yarn' }} ref: ${{ github.head_ref }} diff --git a/.github/workflows/integrity.yml b/.github/workflows/integrity.yml index b2365b5..9514251 100644 --- a/.github/workflows/integrity.yml +++ b/.github/workflows/integrity.yml @@ -45,7 +45,7 @@ jobs: steps: - id: checkout name: Checkout ${{ env.REF }} - uses: actions/checkout@v3.4.0 + uses: actions/checkout@v3.5.0 with: persist-credentials: false ref: ${{ env.REF }} diff --git a/.github/workflows/label-linked-issues.yml b/.github/workflows/label-linked-issues.yml index 6e68bc4..cc0f6b8 100644 --- a/.github/workflows/label-linked-issues.yml +++ b/.github/workflows/label-linked-issues.yml @@ -33,7 +33,7 @@ jobs: steps: - id: checkout name: Checkout main - uses: actions/checkout@v3.4.0 + uses: actions/checkout@v3.5.0 with: persist-credentials: false ref: main diff --git a/.github/workflows/labels.yml b/.github/workflows/labels.yml index ae18640..16e7650 100644 --- a/.github/workflows/labels.yml +++ b/.github/workflows/labels.yml @@ -28,7 +28,7 @@ jobs: steps: - id: checkout name: Checkout ${{ github.ref_name }} - uses: actions/checkout@v3.4.0 + uses: actions/checkout@v3.5.0 with: ref: ${{ github.ref }} - id: sync diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index a5912b5..ec252b7 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -41,7 +41,7 @@ jobs: uses: hmarr/debug-action@v2.1.0 - id: checkout name: Checkout ${{ env.TAG }} - uses: actions/checkout@v3.4.0 + uses: actions/checkout@v3.5.0 with: ref: ${{ format('refs/tags/{0}', env.TAG) }} - id: version @@ -65,7 +65,7 @@ jobs: steps: - id: checkout name: Checkout ${{ env.TAG }} - uses: actions/checkout@v3.4.0 + uses: actions/checkout@v3.5.0 with: ref: ${{ format('refs/tags/{0}', env.TAG) }} - id: npmrc-cleanup @@ -98,7 +98,7 @@ jobs: steps: - id: checkout name: Checkout ${{ env.TAG }} - uses: actions/checkout@v3.4.0 + uses: actions/checkout@v3.5.0 with: ref: ${{ format('refs/tags/{0}', env.TAG) }} - id: npmrc-cleanup diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 52281a1..3e4b2e7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -47,7 +47,7 @@ jobs: uses: hmarr/debug-action@v2.1.0 - id: checkout name: Checkout ${{ env.REF }} - uses: actions/checkout@v3.4.0 + uses: actions/checkout@v3.5.0 with: ref: ${{ env.REF }} - id: version @@ -82,7 +82,7 @@ jobs: steps: - id: checkout name: Checkout ${{ github.event.inputs.sha || 'event.pull_request.merge_commit_sha' }} - uses: actions/checkout@v3.4.0 + uses: actions/checkout@v3.5.0 with: fetch-depth: 0 ref: ${{ github.event.inputs.sha || github.event.pull_request.merge_commit_sha }} diff --git a/.github/workflows/typescript-canary.yml b/.github/workflows/typescript-canary.yml index 46c4e16..9dc92f3 100644 --- a/.github/workflows/typescript-canary.yml +++ b/.github/workflows/typescript-canary.yml @@ -41,7 +41,7 @@ jobs: uses: hmarr/debug-action@v2.1.0 - id: checkout name: Checkout ${{ env.REF }} - uses: actions/checkout@v3.4.0 + uses: actions/checkout@v3.5.0 with: ref: ${{ env.REF }} - id: node