From 1dd15d7fedb772ebb27351182c7ece1f53d24afc Mon Sep 17 00:00:00 2001 From: Scott Dickerson Date: Thu, 14 Dec 2023 13:25:44 -0500 Subject: [PATCH] :seedling: Update github action versions (#1592) Time marches on and github action version need to be updated because old versions get deprecated. This change updates the actions to the current stable versions available. --------- Signed-off-by: Scott J Dickerson --- .github/workflows/ci-actions.yml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci-actions.yml b/.github/workflows/ci-actions.yml index cc0f3ae185..eeed592731 100644 --- a/.github/workflows/ci-actions.yml +++ b/.github/workflows/ci-actions.yml @@ -4,12 +4,10 @@ on: push: branches: - main - - "v[0-9]+.[0-9]+.[0-9]+" - "release-*" pull_request: branches: - main - - "v[0-9]+.[0-9]+.[0-9]+" - "release-*" jobs: @@ -17,13 +15,14 @@ jobs: runs-on: ubuntu-latest strategy: matrix: + # Note: This should match the node version(s) used in the base Dockerfile node-version: [18.x] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} @@ -43,13 +42,13 @@ jobs: run: npm run test -- --coverage --watchAll=false - name: Upload to codecov (client) - uses: codecov/codecov-action@v1 + uses: codecov/codecov-action@v3 with: flags: client directory: ./*/coverage - name: Upload to codecov (server) - uses: codecov/codecov-action@v1 + uses: codecov/codecov-action@v3 with: flags: server directory: ./*/coverage @@ -57,7 +56,7 @@ jobs: build-and-upload-for-global-ci: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: save tackle2-ui image run: |