From a3fc6eb9176bae908688d0b4fc4b52c8fb5e3ede Mon Sep 17 00:00:00 2001 From: vzvu3k6k Date: Thu, 22 Jun 2023 03:36:15 +0900 Subject: [PATCH 1/2] chore: remove needless file Co-authored-by: David Leal --- 360 | 0 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 360 diff --git a/360 b/360 deleted file mode 100644 index e69de29..0000000 From b6677b2cddf64db9930aac6e121d6c6521198162 Mon Sep 17 00:00:00 2001 From: vzvu3k6k Date: Thu, 22 Jun 2023 03:38:34 +0900 Subject: [PATCH 2/2] chore: specify GitHub action versions Co-authored-by: David Leal --- .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 62cd4b3..650e892 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,11 +1,11 @@ -name: test +name: Build/test code on: [push, pull_request] jobs: test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@master - - uses: ruby/setup-ruby@master + - uses: actions/checkout@v3 + - uses: ruby/setup-ruby@v1 with: ruby-version: '3.2' - name: Run tests