Skip to content
Closed
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/autopilot-docs-daily.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
GH_TOKEN: ${{ secrets.ORG_READ_TOKEN || github.token }}
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Update status docs
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/autopilot-operator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
}

- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
clean: false

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/autopilot-org-installer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- name: Checkout installer
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Sync intake workflow
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Install workflow validator dependency
run: python -m pip install --disable-pip-version-check PyYAML==6.0.2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr-lint.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: PR Lint
name: PR Lint
on:
pull_request:
types: ['opened', 'edited', 'reopened', 'synchronize']
Expand All @@ -7,6 +7,6 @@ jobs:
main:
runs-on: ubuntu-latest
steps:
- uses: amannn/action-semantic-pull-request@v5
- uses: amannn/action-semantic-pull-request@v6
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4 changes: 2 additions & 2 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Close Stale Issues and PRs
name: Close Stale Issues and PRs
on:
schedule:
- cron: '30 1 * * *'
Expand All @@ -7,7 +7,7 @@ jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v8
- uses: actions/stale@v10
with:
days-before-stale: 60
days-before-close: 7
Expand Down