diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index a249383..9d71372 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -80,7 +80,7 @@ jobs: mkdir -p artifacts/${{ matrix.arch }} cp target/${{ matrix.target }}/release/operator artifacts/${{ matrix.arch }}/ - - uses: actions/upload-artifact@v6 + - uses: actions/upload-artifact@v7 with: name: binaries-${{ matrix.arch }} path: artifacts/${{ matrix.arch }}/ @@ -103,13 +103,13 @@ jobs: run: echo "version=$(cargo pkgid | cut -d# -f2)" >> "$GITHUB_OUTPUT" - name: Download AMD64 binaries - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: binaries-amd64 path: .github/build-context/amd64/ - name: Download ARM64 binaries - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: binaries-arm64 path: .github/build-context/arm64/ diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4fc3084..a57461e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -62,7 +62,7 @@ jobs: - uses: Swatinem/rust-cache@v2 - name: Generate CRDs run: cargo run --bin gen-crds > crds.yaml - - uses: actions/upload-artifact@v6 + - uses: actions/upload-artifact@v7 with: name: crds path: crds.yaml @@ -73,7 +73,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v6 - - uses: actions/download-artifact@v7 + - uses: actions/download-artifact@v8 with: name: crds - name: Install kubeconform diff --git a/.github/workflows/typos.yml b/.github/workflows/typos.yml index 9f19424..505101b 100644 --- a/.github/workflows/typos.yml +++ b/.github/workflows/typos.yml @@ -12,6 +12,6 @@ jobs: steps: - uses: actions/checkout@v6 - name: Check spelling - uses: crate-ci/typos@v1.43.5 + uses: crate-ci/typos@v1.44.0 with: config: .typos.toml