From ff45c6e0e49e54d35c7927ce3cd93939cfc22db1 Mon Sep 17 00:00:00 2001 From: "Artem V. Ageev" Date: Sat, 25 Jan 2025 17:06:03 +0200 Subject: [PATCH 1/2] add dependabot --- .github/dependabot.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..719a922 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,13 @@ +--- +version: 2 +updates: + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "monthly" + + - package-ecosystem: "cargo" + directory: "/" + schedule: + interval: "monthly" From d7f5564a4e483a4c04b2ea8c453ae99f91c80467 Mon Sep 17 00:00:00 2001 From: "Artem V. Ageev" Date: Sat, 25 Jan 2025 19:44:10 +0200 Subject: [PATCH 2/2] small fix --- .github/workflows/CI.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 451769a..0f1efe2 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -20,20 +20,20 @@ jobs: matrix: job: - target: x86_64-unknown-linux-gnu - os: ubuntu-22.04 + os: ubuntu-latest test: false publish: true - target: x86_64-apple-darwin test: false - os: macos-11 + os: macos-latest - target: aarch64-apple-darwin - os: macos-11 + os: macos-latest - target: x86_64-pc-windows-msvc test: false - os: windows-2022 + os: windows-latest steps: - uses: actions/checkout@v3