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
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ jobs:

steps:
- name: Check out repository
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: clippy

- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: "3.x"

Expand Down Expand Up @@ -80,15 +80,15 @@ jobs:

steps:
- name: Check out repository
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
targets: x86_64-unknown-linux-musl

- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: "3.x"

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/promotion-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,14 @@ jobs:
}

- name: Check out trusted promotion validator
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ github.event.pull_request.base.sha }}
fetch-depth: 0
persist-credentials: false

- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: "3.x"

Expand Down
24 changes: 12 additions & 12 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ jobs:

steps:
- name: Check out merged release commit
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ github.sha }}
fetch-depth: 0
persist-credentials: false

- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: "3.x"

Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:

steps:
- name: Check out merged release commit
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ needs.validate.outputs.head_sha }}
persist-credentials: false
Expand All @@ -80,7 +80,7 @@ jobs:
targets: x86_64-unknown-linux-musl

- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: "3.x"

Expand Down Expand Up @@ -142,7 +142,7 @@ jobs:
sha256sum -c sha256sums.txt

- name: Upload workflow artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: lg-buddy-release-${{ needs.validate.outputs.tag }}
path: |
Expand All @@ -161,14 +161,14 @@ jobs:

steps:
- name: Check out merged release commit
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ needs.validate.outputs.head_sha }}
fetch-depth: 0
persist-credentials: false

- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: "3.x"

Expand All @@ -186,7 +186,7 @@ jobs:
--base-sha "${{ needs.validate.outputs.base_sha }}"

- name: Download verified release bundle
uses: actions/download-artifact@v4
uses: actions/download-artifact@v7
with:
name: lg-buddy-release-${{ needs.validate.outputs.tag }}
path: dist
Expand All @@ -198,7 +198,7 @@ jobs:
id: release-token
uses: actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1
with:
app-id: ${{ vars.RELEASE_PROMOTION_APP_ID }}
client-id: ${{ vars.RELEASE_PROMOTION_APP_CLIENT_ID }}
private-key: ${{ secrets.RELEASE_PROMOTION_APP_PRIVATE_KEY }}
owner: ${{ github.repository_owner }}
repositories: LG_Buddy
Expand Down Expand Up @@ -274,13 +274,13 @@ jobs:

steps:
- name: Check out published prerelease
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ needs.validate.outputs.head_sha }}
persist-credentials: false

- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: "3.x"

Expand Down Expand Up @@ -323,7 +323,7 @@ jobs:

- name: Upload canary evidence for the offline mock
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: production-upgrade-canary-${{ needs.validate.outputs.tag }}
path: |
Expand Down