diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 84f33920..ca52d288 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -11,13 +11,13 @@ jobs: runs-on: ubuntu-latest steps: - name: check out latest commit - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: ref: ${{ github.head_ref || github.ref }} token: ${{ github.token }} - name: cache node_modules - uses: actions/cache@v2 + uses: actions/cache@v4 id: cache-node-modules with: path: node_modules/ @@ -28,7 +28,7 @@ jobs: run: echo "::set-output name=value::$( cat .node-version )" - name: set up node - uses: actions/setup-node@v1 + uses: actions/setup-node@v4 with: node-version: ${{ steps.node-version.outputs.value }} registry-url: https://npm.pkg.github.com @@ -39,7 +39,7 @@ jobs: run: echo "::set-output name=dir::$(yarn cache dir)" - name: cache dependencies - uses: actions/cache@v1 + uses: actions/cache@v4 id: yarn-cache with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }} @@ -49,7 +49,7 @@ jobs: - name: install dependencies env: - NODE_AUTH_TOKEN: ${{ secrets.GH_GPR_TOKEN }} + NODE_AUTH_TOKEN: ${{ secrets.GPR_PUBLIC_TOKEN }} run: | yarn config set @rentpath:registry https://npm.pkg.github.com yarn --frozen-lockfile --production=false diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index feed114b..545d7f2a 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest steps: - name: clone repo with full history for lerna - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: ref: master fetch-depth: 0 @@ -19,7 +19,7 @@ jobs: run: echo "::set-output name=value::$( cat .node-version )" - name: set up node - uses: actions/setup-node@v1 + uses: actions/setup-node@v4 with: node-version: ${{ steps.node-version.outputs.value }} registry-url: https://npm.pkg.github.com @@ -27,7 +27,7 @@ jobs: token: ${{ secrets.GH_GPR_TOKEN }} - name: cache node_modules - uses: actions/cache@v2 + uses: actions/cache@v4 id: cache-node-modules with: path: node_modules/ diff --git a/.github/workflows/stylelint.yml b/.github/workflows/stylelint.yml index 33da5f2c..25e909a2 100644 --- a/.github/workflows/stylelint.yml +++ b/.github/workflows/stylelint.yml @@ -8,10 +8,11 @@ on: jobs: stylelint: name: stylelint + if: false runs-on: ubuntu-latest steps: - name: check out latest commit - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: ref: ${{ github.head_ref || github.ref }} token: ${{ github.token }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a0398a27..91225861 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,13 +11,13 @@ jobs: runs-on: ubuntu-latest steps: - name: check out latest commit - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: ref: ${{ github.head_ref || github.ref }} token: ${{ secrets.GH_TOKEN }} - name: cache node_modules - uses: actions/cache@v2 + uses: actions/cache@v4 id: cache-node-modules with: path: node_modules/ @@ -28,7 +28,7 @@ jobs: run: echo "::set-output name=value::$( cat .node-version )" - name: set up node - uses: actions/setup-node@v1 + uses: actions/setup-node@v4 with: node-version: ${{ steps.node-version.outputs.value }} registry-url: https://npm.pkg.github.com @@ -39,7 +39,7 @@ jobs: run: echo "::set-output name=dir::$(yarn cache dir)" - name: cache dependencies - uses: actions/cache@v1 + uses: actions/cache@v4 id: yarn-cache with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }} @@ -49,7 +49,7 @@ jobs: - name: install dependencies env: - NODE_AUTH_TOKEN: ${{ secrets.GH_GPR_TOKEN }} + NODE_AUTH_TOKEN: ${{ secrets.GPR_PUBLIC_TOKEN }} run: | yarn config set @rentpath:registry https://npm.pkg.github.com yarn --frozen-lockfile --production=false