diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 34bf581..fc20c93 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,7 +10,7 @@ jobs: if: "!contains(github.event.head_commit.message, '[skip ci]')" steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7.0.1 with: ref: ${{ github.head_ref || github.ref_name }} token: ${{ secrets.GH_PAT || github.token }} diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index d9a52a2..08c7f64 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -13,7 +13,7 @@ jobs: if: "!contains(github.event.head_commit.message, '[skip ci]')" steps: - name: Checkout - uses: actions/checkout@v7 + uses: actions/checkout@v7.0.1 - name: Setup Node.js uses: actions/setup-node@v7 with: diff --git a/.github/workflows/node.yml b/.github/workflows/node.yml index 570be3e..6f9142e 100644 --- a/.github/workflows/node.yml +++ b/.github/workflows/node.yml @@ -10,7 +10,7 @@ jobs: if: "!contains(github.event.head_commit.message, '[skip ci]')" steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7.0.1 - name: Setup Node.js uses: actions/setup-node@v6 with: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3f577ed..06e35b1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,7 +10,7 @@ jobs: if: "contains(github.event.head_commit.message, 'Deploy new version')" steps: - name: Checkout - uses: actions/checkout@v2.3.4 + uses: actions/checkout@v7.0.1 with: ref: ${{ github.head_ref }} token: ${{ secrets.GH_PAT }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ae1ac1a..0c290f3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,7 +10,7 @@ jobs: if: "contains(github.event.head_commit.message, 'Deploy new version')" steps: - name: Checkout - uses: actions/checkout@v2.3.4 + uses: actions/checkout@v7.0.1 - uses: ./ env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}