Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Set update schedule for GitHub Actions

version: 2
updates:

- package-ecosystem: "github-actions"
directory: "/"
schedule:
# Check for updates to GitHub Actions every week
interval: "weekly"
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Build & Test
on:
schedule:
- cron: '0 0 * * *'
- cron: '12 3 * * *'
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why do you wanna run at 3:12?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Because everything else runs at 0:00, which unnecessarily increases load in the cloud. That's why I chose a random time. :)

push:

jobs:
Expand All @@ -12,7 +12,7 @@ jobs:

steps:
- name: Cancel outdated jobs
uses: fkirc/skip-duplicate-actions@v5
uses: fkirc/skip-duplicate-actions@v5.3.1
with:
cancel_others: 'true'

Expand All @@ -23,7 +23,7 @@ jobs:
# detached: true

- name: Check out repository
uses: actions/checkout@v4
uses: actions/checkout@v6.0.2

- name: Configure git to trust repository
run: git config --global --add safe.directory /__w/bitbots_main/bitbots_main
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ on:

jobs:
pre-commit:
runs-on: ubuntu-latest
runs-on: ubuntu-slim
steps:
- name: Check out repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Set up workspace
uses: prefix-dev/setup-pixi@v0.9.3
Expand Down