From f66ecd28e8f270a40b6968963f6ed39ba4f6f239 Mon Sep 17 00:00:00 2001 From: Dru Hill Date: Mon, 18 Dec 2023 12:13:46 +0000 Subject: [PATCH] chore: update github action versions --- .github/workflows/copy-package.yaml | 6 +++--- .github/workflows/lint.yaml | 6 +++--- .github/workflows/semantic-release.yaml | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/copy-package.yaml b/.github/workflows/copy-package.yaml index 9ee48909..ee75e26a 100644 --- a/.github/workflows/copy-package.yaml +++ b/.github/workflows/copy-package.yaml @@ -15,14 +15,14 @@ jobs: contents: write packages: write steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: fetch-depth: 0 persist-credentials: true - - uses: actions/setup-node@v2 + - uses: actions/setup-node@v4 with: - node-version: '14' + node-version: '16' - name: Copy released package to private GitHub NPM registry run: npx npm-copy --from https://registry.npmjs.org --from-username any --from-password any --to=https://npm.pkg.github.com --to-email="${GIT_COMMITTER_EMAIL}" --to-token="${NODE_AUTH_TOKEN}" %40sage%2Fdesign-tokens diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index e550083b..2826d6c2 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -11,9 +11,9 @@ jobs: steps: - name: Check out Git repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 - - uses: actions/setup-node@v2 + - uses: actions/setup-node@v4 with: node-version: '16' @@ -22,7 +22,7 @@ jobs: # Install your linters here - name: Run linters - uses: wearerequired/lint-action@v1 + uses: wearerequired/lint-action@v2 with: github_token: ${{ secrets.GITHUB_TOKEN }} eslint: true diff --git a/.github/workflows/semantic-release.yaml b/.github/workflows/semantic-release.yaml index 77760be3..ccc42f61 100644 --- a/.github/workflows/semantic-release.yaml +++ b/.github/workflows/semantic-release.yaml @@ -15,12 +15,12 @@ jobs: contents: write packages: write steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: fetch-depth: 0 persist-credentials: false - - uses: actions/setup-node@v2 + - uses: actions/setup-node@v4 with: node-version: '16' @@ -30,7 +30,7 @@ jobs: run: yarn run build - name: Import GPG key - uses: crazy-max/ghaction-import-gpg@v3.0.1 + uses: crazy-max/ghaction-import-gpg@6.0.0 with: gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }} passphrase: ${{ secrets.GPG_PASSPHRASE }}