Skip to content

Commit 2206f9a

Browse files
Configure Dependabot for daily schedule with 7-day cooldown
1 parent a7923ee commit 2206f9a

File tree

5 files changed

+14
-30
lines changed

5 files changed

+14
-30
lines changed

.github/dependabot.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,6 @@ updates:
1111
- dependencies
1212
- github-actions
1313
schedule:
14-
interval: weekly
14+
interval: daily
15+
cooldown:
16+
default-days: 7

.github/release.yml

Lines changed: 0 additions & 18 deletions
This file was deleted.

.github/workflows/Action-Test.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,51 +23,51 @@ jobs:
2323
steps:
2424
# Need to check out as part of the test, as its a local action
2525
- name: Checkout repo
26-
uses: actions/checkout@v5
26+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2727

2828
# Upload artifact from tests:
2929
- name: Upload artifact [Environments-macOS-CodeCoverage]
30-
uses: actions/upload-artifact@v5
30+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
3131
with:
3232
name: Environments-macOS-CodeCoverage
3333
path: ./tests/CodeCoverage/Environments-macOS-CodeCoverage
3434
retention-days: 1
3535
if-no-files-found: error
3636

3737
- name: Upload artifact [Environments-Windows-CodeCoverage]
38-
uses: actions/upload-artifact@v5
38+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
3939
with:
4040
name: Environments-Windows-CodeCoverage
4141
path: ./tests/CodeCoverage/Environments-Windows-CodeCoverage
4242
retention-days: 1
4343
if-no-files-found: error
4444

4545
- name: Upload artifact [Module-macOS-CodeCoverage]
46-
uses: actions/upload-artifact@v5
46+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
4747
with:
4848
name: Module-macOS-CodeCoverage
4949
path: ./tests/CodeCoverage/Module-macOS-CodeCoverage
5050
retention-days: 1
5151
if-no-files-found: error
5252

5353
- name: Upload artifact [Module-Windows-CodeCoverage]
54-
uses: actions/upload-artifact@v5
54+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
5555
with:
5656
name: Module-Windows-CodeCoverage
5757
path: ./tests/CodeCoverage/Module-Windows-CodeCoverage
5858
retention-days: 1
5959
if-no-files-found: error
6060

6161
- name: Upload artifact [MyTests-macOS-CodeCoverage]
62-
uses: actions/upload-artifact@v5
62+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
6363
with:
6464
name: MyTests-macOS-CodeCoverage
6565
path: ./tests/CodeCoverage/MyTests-macOS-CodeCoverage
6666
retention-days: 1
6767
if-no-files-found: error
6868

6969
- name: Upload artifact [MyTests-Windows-CodeCoverage]
70-
uses: actions/upload-artifact@v5
70+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
7171
with:
7272
name: MyTests-Windows-CodeCoverage
7373
path: ./tests/CodeCoverage/MyTests-Windows-CodeCoverage

.github/workflows/Auto-Release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: ubuntu-latest
2727
steps:
2828
- name: Checkout Code
29-
uses: actions/checkout@v5
29+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
3030

3131
- name: Auto-Release
32-
uses: PSModule/Auto-Release@v1
32+
uses: PSModule/Auto-Release@eabd533035e2cb9822160f26f2eda584bd012356 # v1.9.5

.github/workflows/Linter.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ jobs:
1919
runs-on: ubuntu-latest
2020
steps:
2121
- name: Checkout repo
22-
uses: actions/checkout@v5
22+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2323
with:
2424
fetch-depth: 0
2525

2626
- name: Lint code base
27-
uses: super-linter/super-linter@latest
27+
uses: super-linter/super-linter@d5b0a2ab116623730dd094f15ddc1b6b25bf7b99 # v8.3.2
2828
env:
2929
GITHUB_TOKEN: ${{ github.token }}
3030
VALIDATE_JSON_PRETTIER: false

0 commit comments

Comments
 (0)