diff --git a/.github/workflows/code-quality.yml b/.github/workflows/code-quality.yml index 3fc5b1b..1ca78cb 100644 --- a/.github/workflows/code-quality.yml +++ b/.github/workflows/code-quality.yml @@ -11,7 +11,7 @@ jobs: if: github.repository == 'LuisAlejandro/movie-box' steps: - name: Checkout repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: develop - name: Initialize CodeQL diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 871ae54..7fa1ab1 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -17,7 +17,7 @@ jobs: if: github.repository == 'LuisAlejandro/movie-box' steps: - name: Checkout repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ github.event.pull_request.head.ref }} - name: Restoring node_modules cache diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 31a98ff..9ed344f 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -13,7 +13,7 @@ jobs: if: github.repository == 'LuisAlejandro/movie-box' steps: - name: Checkout repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Restoring node_modules cache uses: actions/cache@v3 with: diff --git a/.github/workflows/scheduled.yml b/.github/workflows/scheduled.yml index 179ca0e..3763001 100644 --- a/.github/workflows/scheduled.yml +++ b/.github/workflows/scheduled.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Checkout repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: master - name: Installing dependencies