Skip to content

Commit

Permalink
upgrade checkout@4 and change dependabot precheck
Browse files Browse the repository at this point in the history
  • Loading branch information
ob6160 committed Sep 20, 2023
1 parent d5df081 commit 488ce5e
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/chromatic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
# if: contains(github.event.pull_request.labels.*.name, 'safe to test')
# Job steps
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
# enables use to use the cache in actions/setup-node
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
# enables use to use the cache in actions/setup-node
- uses: pnpm/action-setup@v2.4.0
- uses: actions/setup-node@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
# We must fetch at least the immediate parents so that if this is
# a pull request then we can checkout the head.
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/cypress-e2e-chrome.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
runs-on: ubuntu-20.04
# Don't run the e2e tests for dependabot prs or if the PR is not labeled as 'safe to test'.
if: |
${{ github.actor != 'dependabot[bot]' &&
${{ github.event.pull_request.user.login == 'dependabot[bot]' &&
needs.label_check.outputs.authorized == 'true' }}
# Only run the e2e tests if a maintainer has labeled the PR as 'safe to test'.
Expand All @@ -48,7 +48,7 @@ jobs:
containers: [1, 2, 3, 4, 5]
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
# enables use to use the cache in actions/setup-node
- uses: pnpm/action-setup@v2.4.0
- uses: actions/setup-node@v3
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/cypress-e2e-firefox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
runs-on: ubuntu-20.04
# Don't run the e2e tests for dependabot prs or if the PR is not labeled as 'safe to test'.
if: |
${{ github.actor != 'dependabot[bot]' &&
${{ github.event.pull_request.user.login == 'dependabot[bot]' &&
needs.label_check.outputs.authorized == 'true' }}
# Only run the e2e tests if a maintainer has labeled the PR as 'safe to test'.
Expand All @@ -48,9 +48,9 @@ jobs:
containers: [1, 2, 3, 4, 5]
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
# enables use to use the cache in actions/setup-node
- uses: pnpm/action-setup@v2.4.0
- uses: pnpm/action-setup@v2.2.2
- uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/supabase-migrations-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
PRODUCTION_PROJECT_ID: bdidtbneqztkyuqztmay

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: supabase/setup-cli@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/supabase-migrations-stage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
STAGE_PROJECT_ID: qyrgvtalhopncikdzhhp

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: supabase/setup-cli@v1
with:
Expand Down

0 comments on commit 488ce5e

Please sign in to comment.