From 6948cd02472627f1d463fda92e71f24ab99837a6 Mon Sep 17 00:00:00 2001 From: Vladimir Sumarov Date: Wed, 2 Sep 2026 18:55:58 +0200 Subject: [PATCH] ci: update actions to Node.js 24 runtimes --- .github/workflows/build.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 308dbc1..58a425a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -45,8 +45,8 @@ jobs: ReleaseName: release Architecture: arm64 steps: - - name: Checkout repository - uses: actions/checkout@v4 + - name: Checkout repository + uses: actions/checkout@v5 with: fetch-depth: 10 @@ -55,10 +55,10 @@ jobs: run: echo "tagartifact=node-window-rendering-$(git describe --tags --abbrev=0)" >> $GITHUB_ENV shell: bash - - name: Install Node.js - uses: actions/setup-node@v4 - with: - node-version: '24.x' + - name: Install Node.js + uses: actions/setup-node@v5 + with: + node-version: '24.x' - name: Install dependencies run: yarn install @@ -85,14 +85,14 @@ jobs: run: tar -czf ${{ env.tagartifact }}-osx-${{ matrix.Architecture }}.tar.gz -C ${{env.BUILD_DIRECTORY}}/${{ env.FULL_DISTRIBUTE_PATH }}/ . shell: bash - - name: Publish build artifact - uses: actions/upload-artifact@v4 + - name: Publish build artifact + uses: actions/upload-artifact@v6 with: name: ${{ env.tagartifact }}-osx-${{ matrix.Architecture }}.tar.gz path: ${{ github.workspace }}/${{ env.tagartifact }}-osx-${{ matrix.Architecture }}.tar.gz - - name: Configure AWS credentials - uses: aws-actions/configure-aws-credentials@v4 + - name: Configure AWS credentials + uses: aws-actions/configure-aws-credentials@v6 with: aws-access-key-id: ${{ secrets.AWS_RELEASE_ACCESS_KEY_ID }} aws-secret-access-key: ${{ secrets.AWS_RELEASE_SECRET_ACCESS_KEY }}