From 6effe5c68114e075c5e2685a1c547629af26c43f Mon Sep 17 00:00:00 2001 From: Lorenzo Zabot Date: Fri, 1 Dec 2023 23:01:51 +0100 Subject: [PATCH] ci: bump gh actions versions (#870) Signed-off-by: Jeff Ching Co-authored-by: Jeff Ching --- .github/workflows/ci.yaml | 12 ++++++------ .github/workflows/release-please.yaml | 8 ++++---- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 91bd68e..61b4bc2 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -11,8 +11,8 @@ jobs: matrix: node: [20] steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v1 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: node-version: ${{ matrix.node }} # The first installation step ensures that all of our production @@ -26,8 +26,8 @@ jobs: windows: runs-on: windows-latest steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v1 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: node-version: 20 - run: npm ci @@ -38,8 +38,8 @@ jobs: matrix: node: [20] steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v1 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: node-version: ${{ matrix.node }} - run: npm ci diff --git a/.github/workflows/release-please.yaml b/.github/workflows/release-please.yaml index ce21f99..003f1d3 100644 --- a/.github/workflows/release-please.yaml +++ b/.github/workflows/release-please.yaml @@ -10,8 +10,8 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v3 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: node-version: 20 - name: install @@ -46,7 +46,7 @@ jobs: echo "${DIFF}" >> $GITHUB_ENV echo 'EOF' >> $GITHUB_ENV - name: Create PR with dist - uses: peter-evans/create-pull-request@v3 + uses: peter-evans/create-pull-request@v5 with: token: ${{ secrets.ACTIONS_BOT_TOKEN }} commit-message: Build dist @@ -69,7 +69,7 @@ jobs: token: ${{ secrets.GITHUB_TOKEN }} release-type: node skip-github-pull-request: true - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: tag major and patch versions run: | git config user.name github-actions[bot]