From c10c6657adb466b45160c8d055705ff7ba7ecc12 Mon Sep 17 00:00:00 2001 From: Daniel Larraz Date: Wed, 8 May 2024 22:41:26 -0500 Subject: [PATCH] Bump GH action versions --- .github/workflows/ci.yml | 6 +++--- .github/workflows/release.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 17ae306..b8f55c8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,9 +17,9 @@ jobs: # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} cache: 'npm' @@ -29,7 +29,7 @@ jobs: - name: Package extension run: npx vsce package --target ${{ matrix.platform }} - name: Upload artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ${{ matrix.platform }} path: "*.vsix" diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b1b7872..b4ee29c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,9 +24,9 @@ jobs: target: --target darwin-arm64 steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} cache: 'npm' @@ -36,7 +36,7 @@ jobs: - name: Package extension run: npx vsce package ${{ matrix.target }} - name: Upload extension artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ${{ matrix.platform }} path: "*.vsix"