From 9a08a92223a2abe63604d327350941e5180a3c71 Mon Sep 17 00:00:00 2001 From: "Nicholas St. Germain" Date: Wed, 11 Dec 2024 22:02:31 -0600 Subject: [PATCH] update workflow action versions (#812) --- .github/workflows/build-image-tag.yml | 4 ++-- .github/workflows/build.yml | 4 ++-- .github/workflows/lint.yml | 6 +++--- .github/workflows/main.yml | 4 ++-- .github/workflows/npm-publish.yml | 4 ++-- .github/workflows/stale.yml | 2 +- 6 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/build-image-tag.yml b/.github/workflows/build-image-tag.yml index 8a6e8b28b..6fe1905d6 100644 --- a/.github/workflows/build-image-tag.yml +++ b/.github/workflows/build-image-tag.yml @@ -24,7 +24,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ github.event.release.target_commitish }} @@ -86,4 +86,4 @@ jobs: - name: Inspect latest image (if applicable) if: ${{ env.LATEST_TAG != '' }} run: | - docker buildx imagetools inspect ${{ env.REGISTRY_IMAGE }}:latest \ No newline at end of file + docker buildx imagetools inspect ${{ env.REGISTRY_IMAGE }}:latest diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6281f2bcc..de1d50875 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -7,12 +7,12 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ github.ref }} - name: Set up Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: "18" cache: "yarn" diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index f08a3b590..c0fd0379f 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -7,12 +7,12 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ github.ref }} - name: Set up Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: "18" cache: "yarn" @@ -21,4 +21,4 @@ jobs: run: yarn install - name: Run lint - run: yarn lint \ No newline at end of file + run: yarn lint diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 16c6a5036..67ae85d7e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -22,7 +22,7 @@ jobs: arch: arm64 steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 @@ -67,4 +67,4 @@ jobs: - name: Inspect image run: | - docker buildx imagetools inspect ${{ env.REGISTRY_IMAGE }}:nightly \ No newline at end of file + docker buildx imagetools inspect ${{ env.REGISTRY_IMAGE }}:nightly diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index ed192e23f..3f407a043 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -8,12 +8,12 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: ref: ${{ github.ref }} - name: Set up Node.js - uses: actions/setup-node@v2 + uses: actions/setup-node@v4 with: node-version: "18" cache: "yarn" diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index e39025edc..b886d0b34 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -18,7 +18,7 @@ jobs: pull-requests: write steps: - - uses: actions/stale@v5 + - uses: actions/stale@v9 with: repo-token: ${{ secrets.GITHUB_TOKEN }} stale-pr-message: 'This PR is stale because it has been open for 7 days with no activity. Remove stale label or comment or this PR will be closed in 3 days.'