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
4 changes: 2 additions & 2 deletions .github/workflows/_cut-release-branches.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
outputs:
repos: ${{ steps.read_config.outputs.repos }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Get repositories
id: read_config
run: |
Expand All @@ -35,7 +35,7 @@ jobs:
application_private_key: ${{ secrets.TRUSTIFICATION_BOT_KEY }}

- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: ${{ matrix.repo }}
token: ${{ steps.get_workflow_token.outputs.token }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/_main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
milestone: ${{ steps.filter.outputs.milestone }}
labels: ${{ steps.filter.outputs.labels }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: dorny/paths-filter@v3
id: filter
with:
Expand All @@ -31,7 +31,7 @@ jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Set up Rust
uses: Swatinem/rust-cache@v2
- name: Crate Format
Expand All @@ -51,7 +51,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ github.token }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: Swatinem/rust-cache@v2
- run: RUST_LOG=info cargo run --bin milestones -- --config pkg/config/config.yaml

Expand All @@ -63,6 +63,6 @@ jobs:
env:
GITHUB_TOKEN: ${{ github.token }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: Swatinem/rust-cache@v2
- run: RUST_LOG=info cargo run --bin labels -- --config pkg/config/config.yaml
6 changes: 3 additions & 3 deletions .github/workflows/_push-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
milestone: ${{ steps.filter.outputs.milestone }}
labels: ${{ steps.filter.outputs.labels }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: dorny/paths-filter@v3
id: filter
with:
Expand All @@ -42,7 +42,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ github.token }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: Swatinem/rust-cache@v2
- name: Get Token
id: get_workflow_token
Expand All @@ -65,7 +65,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ github.token }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: Swatinem/rust-cache@v2
- name: Get Token
id: get_workflow_token
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_verifyPR.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
name: Verify PR contents
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Check Title
id: verifier
uses: ./cmd/verify-pr
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/backport.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
branch: ${{ fromJson(needs.branches.outputs.branches) }}
steps:
- name: checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ matrix.branch }}
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-push-images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ jobs:
df . -h

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

- name: Configure QEMU
uses: docker/setup-qemu-action@master
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/generate-changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
fi

- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
token: "${{ env.GITHUB_TOKEN }}"
repository: "${{ inputs.repository }}"
Expand Down
Loading