Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/cockpit-lib-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
echo '${{ secrets.GITHUB_TOKEN }}' > ~/.config/github-token

- name: Clone repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Run cockpit-lib-update
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

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

- name: Initialize CodeQL
uses: github/codeql-action/init@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codespell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:

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

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

steps:
- name: Clone repository
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: ${{ github.event.pull_request.head.ref }}
repository: ${{ github.event.pull_request.head.repo.full_name }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Trigger updates-testing scenario
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
GH_TOKEN: ${{ github.token }}
steps:
- name: Clone repository
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
permissions: {}
steps:
- name: Clone repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Set up git
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reposchutz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

steps:
- name: Clone target branch
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tasks-container-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
echo '${{ secrets.GITHUB_TOKEN }}' > ~/.config/github-token

- name: Clone repository
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ssh-key: ${{ secrets.DEPLOY_KEY }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/weblate-sync-po.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ jobs:
sudo apt install -y --no-install-recommends gettext

- name: Clone source repository
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ssh-key: ${{ secrets.DEPLOY_KEY }}
path: src

- name: Clone weblate repository
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
repository: ${{ github.repository }}-weblate
path: weblate
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/weblate-sync-pot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ jobs:
sudo apt install -y --no-install-recommends npm make gettext appstream

- name: Clone source repository
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
path: src

- name: Generate .pot file
run: make -C src po/machines.pot

- name: Clone weblate repository
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
path: weblate
repository: ${{ github.repository }}-weblate
Expand Down
Loading