From 5e5e2f6d57c4b01657d0de179038d9b11429a589 Mon Sep 17 00:00:00 2001 From: TANIGUCHI Masaya Date: Sat, 18 May 2024 15:09:21 +0900 Subject: [PATCH] Create update.yml --- .github/workflows/update.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/update.yml diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml new file mode 100644 index 0000000..f9a65e3 --- /dev/null +++ b/.github/workflows/update.yml @@ -0,0 +1,22 @@ +name: Update dependencies + +on: + push: + branches: ["main"] + schedule: + # * is a special character in YAML so you have to quote this string + - cron: '0 0 1 * *' + +permissions: + contents: read + +jobs: + test: + runs-on: ubuntu-latest + + steps: + - name: Setup repo + uses: actions/checkout@v4 + + - name: Update dependency + uses: hasundue/molt-action@v1-rc