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
8 changes: 6 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@ jobs:
runs-on: ubuntu-latest
container: fedora:41 # CURRENT DEVELOPMENT ENVIRONMENT
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
persist-credentials: false
- name: Install dependencies
run: >
dnf install -y
Expand Down Expand Up @@ -86,7 +88,9 @@ jobs:
10
- name: Display Python version
run: python3 --version
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
persist-credentials: false
- name: Install dependencies
run: >
dnf install -y
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,10 @@ jobs:
python3-isort
- name: Install hs-dbus-signature
run: pip install --user hs-dbus-signature
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
path: into-dbus-python
persist-credentials: false
- name: Run with monkeytype
run: >
MONKEYTYPE=1
Expand Down
Loading