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
36 changes: 18 additions & 18 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0

- name: Cache pre-commit
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/.cache/pre-commit
key: pre-commit|${{ runner.os }}|${{ hashFiles('.pre-commit-config.yaml') }}
Expand All @@ -39,7 +39,7 @@ jobs:
pip install --no-cache-dir pre-commit

- name: Setup Reviewdog binary
uses: reviewdog/action-setup@e04ffabe3898a0af8d0fb1af00c188831c4b5893 # v1.3.2
uses: reviewdog/action-setup@d8a7baabd7f3e8544ee4dbde3ee41d0011c3a93f # v1.5.0
with:
reviewdog_version: latest

Expand Down Expand Up @@ -101,12 +101,12 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0

- name: Cache pre-commit
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/.cache/pre-commit
key: pre-commit|${{ runner.os }}|${{ hashFiles('.pre-commit-config.yaml') }}
Expand All @@ -116,7 +116,7 @@ jobs:
pip install --no-cache-dir pre-commit

- name: Setup Reviewdog binary
uses: reviewdog/action-setup@e04ffabe3898a0af8d0fb1af00c188831c4b5893 # v1.3.2
uses: reviewdog/action-setup@d8a7baabd7f3e8544ee4dbde3ee41d0011c3a93f # v1.5.0
with:
reviewdog_version: latest

Expand Down Expand Up @@ -164,12 +164,12 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0

- name: Cache pre-commit
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/.cache/pre-commit
key: pre-commit|${{ runner.os }}|${{ hashFiles('.pre-commit-config.yaml') }}
Expand All @@ -178,7 +178,7 @@ jobs:
run: pip install --no-cache-dir pre-commit

- name: Setup Reviewdog binary
uses: reviewdog/action-setup@e04ffabe3898a0af8d0fb1af00c188831c4b5893 # v1.3.2
uses: reviewdog/action-setup@d8a7baabd7f3e8544ee4dbde3ee41d0011c3a93f # v1.5.0
with:
reviewdog_version: latest

Expand Down Expand Up @@ -222,12 +222,12 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0

- name: Cache pre-commit
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/.cache/pre-commit
key: pre-commit|${{ runner.os }}|${{ hashFiles('.pre-commit-config.yaml') }}
Expand All @@ -236,7 +236,7 @@ jobs:
run: pip install --no-cache-dir pre-commit

- name: Setup Reviewdog binary
uses: reviewdog/action-setup@e04ffabe3898a0af8d0fb1af00c188831c4b5893 # v1.3.2
uses: reviewdog/action-setup@d8a7baabd7f3e8544ee4dbde3ee41d0011c3a93f # v1.5.0
with:
reviewdog_version: latest

Expand Down Expand Up @@ -282,12 +282,12 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0

- name: Cache pre-commit
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/.cache/pre-commit
key: pre-commit|${{ runner.os }}|${{ hashFiles('.pre-commit-config.yaml') }}
Expand All @@ -300,7 +300,7 @@ jobs:
pip install --no-cache-dir pre-commit

- name: Setup Reviewdog binary
uses: reviewdog/action-setup@e04ffabe3898a0af8d0fb1af00c188831c4b5893 # v1.3.2
uses: reviewdog/action-setup@d8a7baabd7f3e8544ee4dbde3ee41d0011c3a93f # v1.5.0
with:
reviewdog_version: latest

Expand Down Expand Up @@ -368,12 +368,12 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0

- name: Cache pre-commit
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/.cache/pre-commit
key: pre-commit|${{ runner.os }}|${{ hashFiles('.pre-commit-config.yaml') }}
Expand All @@ -382,7 +382,7 @@ jobs:
run: pip install --no-cache-dir pre-commit

- name: Setup Reviewdog binary
uses: reviewdog/action-setup@e04ffabe3898a0af8d0fb1af00c188831c4b5893 # v1.3.2
uses: reviewdog/action-setup@d8a7baabd7f3e8544ee4dbde3ee41d0011c3a93f # v1.5.0
with:
reviewdog_version: latest

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pre-commit-warmup.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0

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

- name: Cache pre-commit
id: precommit
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/.cache/pre-commit
key: pre-commit|${{ runner.os }}|${{ hashFiles('.pre-commit-config.yaml') }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Create release tag
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
Expand All @@ -32,7 +32,7 @@ jobs:
})

- name: Workaround to fetch the tag # Is there a better way to do it?
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0

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

- name: Delete release tag
if: ${{ failure() || cancelled() }}
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
sudo apt-get install -y ubuntu-desktop-minimal

- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Install ansible from PPA
run: |
Expand Down