Skip to content

Commit 34e0bc7

Browse files
authored
Merge pull request #123 from mulkieran/issue_project_807
Increase GitHub Action checkout version to v5
2 parents 7c38ca4 + dd689d3 commit 34e0bc7

2 files changed

Lines changed: 8 additions & 3 deletions

File tree

.github/workflows/main.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,9 @@ jobs:
4646
runs-on: ubuntu-latest
4747
container: fedora:41 # CURRENT DEVELOPMENT ENVIRONMENT
4848
steps:
49-
- uses: actions/checkout@v4
49+
- uses: actions/checkout@v5
50+
with:
51+
persist-credentials: false
5052
- name: Install dependencies
5153
run: >
5254
dnf install -y
@@ -86,7 +88,9 @@ jobs:
8688
10
8789
- name: Display Python version
8890
run: python3 --version
89-
- uses: actions/checkout@v4
91+
- uses: actions/checkout@v5
92+
with:
93+
persist-credentials: false
9094
- name: Install dependencies
9195
run: >
9296
dnf install -y

.github/workflows/push.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,10 @@ jobs:
3333
python3-isort
3434
- name: Install hs-dbus-signature
3535
run: pip install --user hs-dbus-signature
36-
- uses: actions/checkout@v4
36+
- uses: actions/checkout@v5
3737
with:
3838
path: into-dbus-python
39+
persist-credentials: false
3940
- name: Run with monkeytype
4041
run: >
4142
MONKEYTYPE=1

0 commit comments

Comments
 (0)