From f5ec90bbc4664c874a0c210daf4c887ae157f029 Mon Sep 17 00:00:00 2001 From: Scott Schafer Date: Mon, 29 Sep 2025 18:08:03 -0600 Subject: [PATCH 1/2] chore: Update actions/checkout to v5 --- .github/workflows/ci.yml | 2 +- .github/workflows/nightly.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d023390..5bcbfe9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -45,7 +45,7 @@ jobs: #VERSIONS name: ${{ matrix.name }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - run: git clone https://github.com/docker-library/official-images.git ~/official-images - run: docker build -t rust:$RUST_VERSION-${{ matrix.name }} stable/${{ matrix.variant }} - run: ~/official-images/test/run.sh rust:$RUST_VERSION-${{ matrix.name }} diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 3e7700a..d57e23e 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -73,7 +73,7 @@ jobs: name: ${{ matrix.name }} steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Set up QEMU uses: docker/setup-qemu-action@v3 - name: Set up Docker Buildx From f3814f5c8d7559fb83da772a42286d29126526b9 Mon Sep 17 00:00:00 2001 From: Scott Schafer Date: Mon, 29 Sep 2025 18:53:08 -0600 Subject: [PATCH 2/2] chore: Update docker/build-push-action to v6 --- .github/workflows/nightly.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index d57e23e..4e67068 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -103,7 +103,7 @@ jobs: tags: ${{ matrix.tags }} - name: Build and push image - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: context: ${{ matrix.context }} platforms: ${{ matrix.platforms }}