From b906f0c402a87babcad43108a804393e64380465 Mon Sep 17 00:00:00 2001 From: Titus Wormer Date: Fri, 11 Oct 2024 11:37:02 +0200 Subject: [PATCH] Update Node in Actions --- .github/workflows/bb.yml | 4 ++-- .github/workflows/main.yml | 16 ++++++++-------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/bb.yml b/.github/workflows/bb.yml index 0198fc3..16ca054 100644 --- a/.github/workflows/bb.yml +++ b/.github/workflows/bb.yml @@ -1,9 +1,9 @@ name: bb on: issues: - types: [opened, reopened, edited, closed, labeled, unlabeled] + types: [closed, edited, labeled, opened, reopened, unlabeled] pull_request_target: - types: [opened, reopened, edited, closed, labeled, unlabeled] + types: [closed, edited, labeled, opened, reopened, unlabeled] jobs: main: runs-on: ubuntu-latest diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index fb63387..2ce794f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,21 +1,21 @@ -name: main -on: - - pull_request - - push jobs: main: name: ${{matrix.node}} runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: node-version: ${{matrix.node}} - run: npm install - run: npm test - - uses: codecov/codecov-action@v3 + - uses: codecov/codecov-action@v4 strategy: matrix: node: - - lts/gallium + - lts/hydrogen - node +name: main +on: + - pull_request + - push