From 3a14e051e4b6b68b3e46695e5682986064e98011 Mon Sep 17 00:00:00 2001 From: D N <4661784+retyui@users.noreply.github.com> Date: Mon, 26 Feb 2024 19:38:05 +0100 Subject: [PATCH 1/2] chore: Node.js 16 actions are deprecated - Please update the following actions to use Node.js 20: actions/checkout@v3, actions/cache@v3, actions/setup-node@v3. - For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/. --- .github/workflows/test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 42d9e7b..33df0c1 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,14 +12,14 @@ jobs: name: Test steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup Node.js and Yarn - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: '18' - - uses: actions/cache@v3 + - uses: actions/cache@v4 id: cache with: path: '**/node_modules' From cac7edcfd8b63aee66437dcfd4f1ab4169082de5 Mon Sep 17 00:00:00 2001 From: D N <4661784+retyui@users.noreply.github.com> Date: Mon, 10 Jun 2024 14:50:54 +0200 Subject: [PATCH 2/2] chore: Remove Travis CI config --- .travis.yml | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 04b7b78..0000000 --- a/.travis.yml +++ /dev/null @@ -1,14 +0,0 @@ -language: node_js -before_install: - - curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.17.3 - - export PATH=$HOME/.yarn/bin:$PATH -cache: - yarn: true - directories: - - node_modules - - test/node_modules -notifications: - email: false -node_js: - - "12" - - "14"