diff --git a/.github/workflows/prepare-release.yml b/.github/workflows/prepare-release.yml index cff52481..ef363150 100644 --- a/.github/workflows/prepare-release.yml +++ b/.github/workflows/prepare-release.yml @@ -14,10 +14,10 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Install node - uses: actions/setup-node@v5 + uses: actions/setup-node@v6 with: node-version: 20.x @@ -37,7 +37,7 @@ jobs: run: pip install setuptools - name: Cache node modules - uses: actions/cache@v4 + uses: actions/cache@v5 env: cache-name: cache-node-modules with: diff --git a/.github/workflows/publish-release.yml b/.github/workflows/publish-release.yml index 1b29b486..6068ab58 100644 --- a/.github/workflows/publish-release.yml +++ b/.github/workflows/publish-release.yml @@ -16,10 +16,10 @@ jobs: contents: write steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Install node - uses: actions/setup-node@v5 + uses: actions/setup-node@v6 with: node-version: 20.x @@ -39,7 +39,7 @@ jobs: run: pip install setuptools - name: Cache node modules - uses: actions/cache@v4 + uses: actions/cache@v5 env: cache-name: cache-node-modules with: @@ -77,7 +77,7 @@ jobs: run: gh release upload ${{ github.ref_name }} ./dist/offline_${{ github.ref_name }}.zip - name: Configure AWS credentials - uses: aws-actions/configure-aws-credentials@v5 + uses: aws-actions/configure-aws-credentials@v6 with: aws-region: ${{ secrets.AWS_REGION }} role-to-assume: ${{ secrets.AWS_OIDC_RUNNER_ROLE }} diff --git a/.github/workflows/publish-snapshot.yml b/.github/workflows/publish-snapshot.yml index 604a0f6e..20f0831e 100644 --- a/.github/workflows/publish-snapshot.yml +++ b/.github/workflows/publish-snapshot.yml @@ -20,10 +20,10 @@ jobs: id-token: write steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Install node - uses: actions/setup-node@v5 + uses: actions/setup-node@v6 with: node-version: 20.x @@ -43,7 +43,7 @@ jobs: run: pip install setuptools - name: Cache node modules - uses: actions/cache@v4 + uses: actions/cache@v5 env: cache-name: cache-node-modules with: @@ -62,7 +62,7 @@ jobs: run: npm run build - name: Configure AWS credentials - uses: aws-actions/configure-aws-credentials@v5 + uses: aws-actions/configure-aws-credentials@v6 with: aws-region: ${{ secrets.AWS_REGION }} role-to-assume: ${{ secrets.AWS_OIDC_RUNNER_ROLE }} diff --git a/.github/workflows/publish-unstable.yml b/.github/workflows/publish-unstable.yml index 6c316558..c629b0a9 100644 --- a/.github/workflows/publish-unstable.yml +++ b/.github/workflows/publish-unstable.yml @@ -21,10 +21,10 @@ jobs: working-directory: ./core steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Install node - uses: actions/setup-node@v5 + uses: actions/setup-node@v6 with: node-version: 20.x @@ -44,7 +44,7 @@ jobs: run: pip install setuptools - name: Cache node modules - uses: actions/cache@v4 + uses: actions/cache@v5 env: cache-name: cache-node-modules with: @@ -67,7 +67,7 @@ jobs: run: sed -e 's#_PATH_#./#' -e 's#_DOC_VERSION_#latest#' -e 's#_TAG_VERSION_##' -e 's#_VERSION_#latest#' ./public/index.html > ./core/dist/index.html - name: Configure AWS credentials - uses: aws-actions/configure-aws-credentials@v5 + uses: aws-actions/configure-aws-credentials@v6 with: aws-region: ${{ secrets.AWS_REGION }} role-to-assume: ${{ secrets.AWS_OIDC_RUNNER_ROLE }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 62925aa9..ab0401fc 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -24,7 +24,7 @@ jobs: MINICONDA_VERSION: 4.11.0 steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 3 @@ -37,12 +37,12 @@ jobs: run: git log --graph -3 - name: Install node - uses: actions/setup-node@v5 + uses: actions/setup-node@v6 with: node-version: 20.x - name: Cache node modules - uses: actions/cache@v4 + uses: actions/cache@v5 env: cache-name: cache-node-modules with: @@ -71,7 +71,7 @@ jobs: - name: Build run: make build # Integration tests run in the build step. - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v6 with: name: pyscript path: |