diff --git a/.github/workflows/chromatic.yml b/.github/workflows/chromatic.yml index c7696783..ade43138 100644 --- a/.github/workflows/chromatic.yml +++ b/.github/workflows/chromatic.yml @@ -16,7 +16,7 @@ jobs: - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4 with: fetch-depth: 0 # disable shallow checkout, chromatic need git history - - uses: actions/setup-node@v3 + - uses: actions/setup-node@v4 with: node-version: '16' cache: 'yarn' diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index 3f6cab7a..7c5a7696 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -28,7 +28,7 @@ jobs: GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" steps: - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4 - - uses: actions/setup-node@v3 + - uses: actions/setup-node@v4 with: node-version: '16' cache: 'yarn' @@ -44,7 +44,7 @@ jobs: if: ${{ needs.release-please.outputs.release_created }} steps: - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4 - - uses: actions/setup-node@v3 + - uses: actions/setup-node@v4 with: node-version: '16' cache: 'yarn' diff --git a/.github/workflows/static-analyzer.yml b/.github/workflows/static-analyzer.yml index 22da62e6..4e615d07 100644 --- a/.github/workflows/static-analyzer.yml +++ b/.github/workflows/static-analyzer.yml @@ -10,7 +10,7 @@ jobs: NODE_OPTIONS: --max-old-space-size=6144 steps: - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4 - - uses: actions/setup-node@v3 + - uses: actions/setup-node@v4 with: node-version: '16' cache: 'yarn' diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml index 66a98cb2..e08fb919 100644 --- a/.github/workflows/unit-test.yml +++ b/.github/workflows/unit-test.yml @@ -10,7 +10,7 @@ jobs: NODE_OPTIONS: --max-old-space-size=6144 steps: - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4 - - uses: actions/setup-node@v3 + - uses: actions/setup-node@v4 with: node-version: '16' cache: 'yarn'