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

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

- name: Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.11'
python-version: '3.13'

- name: Install dependencies
run: |
Expand All @@ -28,7 +28,7 @@ jobs:

- name: Generate Bootc Actions Token
id: bootc_token
uses: actions/create-github-app-token@v1
uses: actions/create-github-app-token@v2
with:
app-id: ${{ secrets.APP_ID }}
private-key: ${{ secrets.APP_PRIVATE_KEY }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/autovendor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
vendor:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: dtolnay/rust-toolchain@stable
- name: Install vendor tool
run: cargo install cargo-vendor-filterer
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
runs-on: ubuntu-latest
container: quay.io/coreos-assembler/fcos-buildroot:testing-devel
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Install deps
run: ./ci/installdeps.sh
- name: Mark git checkout as safe
Expand Down Expand Up @@ -54,7 +54,7 @@ jobs:
sudo apt install -y crun/testing podman/testing skopeo/testing
- name: Installdeps
run: sudo apt update && sudo apt install just
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Build and run container integration tests
run: sudo just run-container-integration run-container-external-tests
container-continuous:
Expand All @@ -69,13 +69,13 @@ jobs:
sudo apt install -y crun/testing podman/testing skopeo/testing
- name: Installdeps
run: sudo apt update && sudo apt install just
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Build with continuous repo enabled
run: sudo just build --build-arg=continuous_repo=1
cargo-deny:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: EmbarkStudios/cargo-deny-action@v2
with:
log-level: warn
Expand All @@ -93,7 +93,7 @@ jobs:
sudo apt update
sudo apt install -y crun/testing podman/testing skopeo/testing
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Free up disk space on runner
run: sudo ./ci/clean-gha-runner.sh
- name: Enable fsverity for /
Expand Down Expand Up @@ -147,7 +147,7 @@ jobs:
env:
MDBOOK_VERSION: 0.4.37
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Install mdBook
run: |
tag=$(curl 'https://api.github.com/repos/rust-lang/mdbook/releases/latest' | jq -r '.tag_name')
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
env:
MDBOOK_VERSION: 0.4.37
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Install mdBook
run: |
tag=$(curl 'https://api.github.com/repos/rust-lang/mdbook/releases/latest' | jq -r '.tag_name')
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:
- name: Build with mdBook
run: cd docs && mdbook-mermaid install && mdbook build
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
uses: actions/upload-pages-artifact@v4
with:
path: ./docs/book/html

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ jobs:
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: actions/labeler@v5
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
private-key: ${{ secrets.APP_PRIVATE_KEY }}

- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0
token: ${{ steps.app-token.outputs.token }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scheduled-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
private-key: ${{ secrets.APP_PRIVATE_KEY }}

- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0
token: ${{ steps.app-token.outputs.token }}
Expand Down
Loading
Loading