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
6 changes: 3 additions & 3 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: Install mdBook
run: |
Expand All @@ -46,7 +46,7 @@ jobs:

- name: Upload artifact
if: github.ref == 'refs/heads/main'
uses: actions/upload-pages-artifact@v3
uses: actions/upload-pages-artifact@v5
with:
path: docs/book

Expand All @@ -63,4 +63,4 @@ jobs:
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
uses: actions/deploy-pages@v5
20 changes: 10 additions & 10 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
build-macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- name: Setup Rust
uses: dtolnay/rust-toolchain@stable
Expand All @@ -36,7 +36,7 @@ jobs:
runs-on: ubuntu-24.04

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- name: Setup bootc Ubuntu environment
uses: bootc-dev/actions/bootc-ubuntu-setup@main
Expand Down Expand Up @@ -72,14 +72,14 @@ jobs:
BCVK_ALL_IMAGES: ${{ env.ALL_BASE_IMAGES }}

- name: Upload nextest archive
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: nextest-archive
path: nextest-archive.tar.zst
retention-days: 7

- name: Upload bcvk binary for tests
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: bcvk-binary-tests
path: target/release/bcvk
Expand All @@ -90,7 +90,7 @@ jobs:

- name: Upload bcvk binary artifacts
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: bcvk-binary
path: |
Expand All @@ -116,7 +116,7 @@ jobs:
sudo mv oras /usr/local/bin/

- name: Download bcvk binary artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: bcvk-binary

Expand All @@ -140,7 +140,7 @@ jobs:
partition: [1, 2, 3, 4]

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- uses: bootc-dev/actions/bootc-ubuntu-setup@main
with:
Expand All @@ -158,12 +158,12 @@ jobs:
run: just pull-test-images

- name: Download nextest archive
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: nextest-archive

- name: Download bcvk binary
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: bcvk-binary-tests
path: target/release
Expand All @@ -190,7 +190,7 @@ jobs:

- name: Upload junit XML
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: integration-junit-xml-${{ matrix.partition }}
path: target/nextest/integration/junit.xml
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ jobs:
contains(github.event.pull_request.labels.*.name, 'release'))
runs-on: ubuntu-latest
steps:
- uses: actions/create-github-app-token@v2
- uses: actions/create-github-app-token@v3
id: app-token
with:
app-id: ${{ secrets.APP_ID }}
private-key: ${{ secrets.APP_PRIVATE_KEY }}

- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
fetch-depth: 0
token: ${{ steps.app-token.outputs.token }}
Expand All @@ -47,7 +47,7 @@ jobs:

- name: Import GPG key
if: github.event_name != 'push'
uses: crazy-max/ghaction-import-gpg@v6
uses: crazy-max/ghaction-import-gpg@v7
with:
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.GPG_PASSPHRASE }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/scheduled-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@ jobs:
create-release-pr:
runs-on: ubuntu-latest
steps:
- uses: actions/create-github-app-token@v2
- uses: actions/create-github-app-token@v3
id: app-token
with:
app-id: ${{ secrets.APP_ID }}
private-key: ${{ secrets.APP_PRIVATE_KEY }}

- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
fetch-depth: 0
token: ${{ steps.app-token.outputs.token }}
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:

- name: Import GPG key
if: steps.check_schedule.outputs.should_release == 'true'
uses: crazy-max/ghaction-import-gpg@v6
uses: crazy-max/ghaction-import-gpg@v7
with:
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.GPG_PASSPHRASE }}
Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:
echo "VERSION=$VERSION" >> $GITHUB_OUTPUT

- name: Create Pull Request
uses: peter-evans/create-pull-request@v7
uses: peter-evans/create-pull-request@v8
env:
VERSION: ${{ steps.create_commit.outputs.VERSION }}
with:
Expand Down
Loading