diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a7b99ed..409aeec 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,9 +15,9 @@ jobs: node-version: [ 20.x, 22.x, 24.x ] steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v6 + uses: actions/setup-node@v7 with: node-version: ${{ matrix.node-version }} - name: Build project diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b47304d..63cb325 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,9 +15,9 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Use Node.js 22.x - uses: actions/setup-node@v6 + uses: actions/setup-node@v7 with: node-version: 22.x - name: Set env @@ -29,7 +29,7 @@ jobs: - name: Package project run: ./package.sh - name: Create Release - uses: softprops/action-gh-release@v2 + uses: softprops/action-gh-release@v3 with: tag_name: ${{ github.ref_name }} name: Release ${{ github.ref_name }}