From a784b07fabf5ecf7eaeee9aed4738b2869bb8ebd Mon Sep 17 00:00:00 2001 From: trimmedjay Date: Wed, 6 Nov 2024 16:36:48 +0000 Subject: [PATCH] Create Dependencies.yml --- .github/workflows/Dependencies.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/Dependencies.yml diff --git a/.github/workflows/Dependencies.yml b/.github/workflows/Dependencies.yml new file mode 100644 index 0000000..1491d1a --- /dev/null +++ b/.github/workflows/Dependencies.yml @@ -0,0 +1,24 @@ +name: Update Dependencies + +on: + schedule: + - cron: '0 0 * * 1' # Run every Monday + +jobs: + update-dependencies: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v3 + + - name: Install vcpkg + run: | + git clone https://github.com/microsoft/vcpkg.git + ./vcpkg/bootstrap-vcpkg.sh + + - name: Install Dependencies + run: ./vcpkg/vcpkg install + + - name: Run Dependency Report + run: ./vcpkg/vcpkg list