diff --git a/.github/workflows/build-deploy-docs.yml b/.github/workflows/build-deploy-docs.yml index 539ac308..d9989d64 100644 --- a/.github/workflows/build-deploy-docs.yml +++ b/.github/workflows/build-deploy-docs.yml @@ -16,7 +16,7 @@ jobs: permissions: contents: write steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: actions/setup-python@v6 with: python-version: 3.x diff --git a/.github/workflows/deploy-BETA.yml b/.github/workflows/deploy-BETA.yml index 0bdcb66c..f9763d31 100644 --- a/.github/workflows/deploy-BETA.yml +++ b/.github/workflows/deploy-BETA.yml @@ -33,7 +33,7 @@ jobs: environment: name: beta steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: actions/setup-node@v5.0.0 with: node-version: "20.x" @@ -59,7 +59,7 @@ jobs: name: beta steps: - name: Check out the repo - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Set up QEMU uses: docker/setup-qemu-action@v3 diff --git a/.github/workflows/deploy-RELEASE.yml b/.github/workflows/deploy-RELEASE.yml index a9430c3c..54ed50c2 100644 --- a/.github/workflows/deploy-RELEASE.yml +++ b/.github/workflows/deploy-RELEASE.yml @@ -30,7 +30,7 @@ jobs: environment: name: release steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 # Setup .npmrc file to publish to npm - uses: actions/setup-node@v5.0.0 with: @@ -55,7 +55,7 @@ jobs: name: release steps: - name: Check out the repo - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Set up QEMU uses: docker/setup-qemu-action@v3 diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index d1ce606c..1ff37541 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Install node uses: actions/setup-node@v5 diff --git a/.github/workflows/mega-linter.yml b/.github/workflows/mega-linter.yml index dfa0d7f8..bb4eb3e8 100644 --- a/.github/workflows/mega-linter.yml +++ b/.github/workflows/mega-linter.yml @@ -36,7 +36,7 @@ jobs: steps: # Git Checkout - name: Checkout Code - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: token: ${{ secrets.PAT || secrets.GITHUB_TOKEN }} fetch-depth: 0 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ad66dd58..09ca11af 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -26,7 +26,7 @@ jobs: timeout-minutes: 15 steps: - name: Checkout Code - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Install node uses: actions/setup-node@v5 with: @@ -56,7 +56,7 @@ jobs: timeout-minutes: 15 steps: - name: Checkout Code - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Install dependencies and link run: npm ci && npm link - name: Run tests