diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f7ae8d2..780a095 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,12 +18,12 @@ jobs: - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!" - run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}." - name: Check out repository code - uses: actions/checkout@v2.4.0 + uses: actions/checkout@v4 - run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner." - name: Setup Node.js environment - uses: actions/setup-node@v2.4.1 + uses: actions/setup-node@v4 with: - node-version: 20 + node-version: 22 - name: Build run: | npm install diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index ef5d04a..9b9743b 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -12,10 +12,10 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: - node-version: 20 + node-version: 22 cache: 'npm' - name: Build diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index c95f2d7..8857300 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -18,12 +18,12 @@ jobs: - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!" - run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}." - name: Check out repository code - uses: actions/checkout@v2.4.0 + uses: actions/checkout@v4 - run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner." - name: Setup Node.js environment - uses: actions/setup-node@v2.4.1 + uses: actions/setup-node@v4 with: - node-version: 20 + node-version: 22 - name: Lint run: | npm install