From 60f15c25b6d912abe6a3c287cdd1102e551fc7ea Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Dec 2023 03:03:04 +0000 Subject: [PATCH] build(deps): bump actions/upload-artifact from 3 to 4 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/interop.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/interop.yml b/.github/workflows/interop.yml index 745c323a..8f4b9363 100644 --- a/.github/workflows/interop.yml +++ b/.github/workflows/interop.yml @@ -20,7 +20,7 @@ jobs: - name: cargo build run: cargo build --release --features unstable working-directory: ./rage - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: rage path: target/release/rage @@ -69,7 +69,7 @@ jobs: run: | cd $GITHUB_WORKSPACE/go-age/age go build filippo.io/age/cmd/age - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: age path: go-age/age/age @@ -131,7 +131,7 @@ jobs: if: matrix.recipient == 'ssh-rsa' || matrix.recipient == 'ssh-ed25519' run: echo "AGE_PUBKEY=-R key.txt.pub" >> $GITHUB_ENV - name: Store key.txt in case we need it - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ${{ matrix.alice }}_${{ matrix.bob }}_${{ matrix.recipient }}_key.txt path: key.txt @@ -142,7 +142,7 @@ jobs: - name: Decrypt from file run: ./${{ matrix.bob }} -d -i key.txt test.age | grep -q "^Test string$" - name: Store test.age - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: failure() with: name: ${{ matrix.alice }}_${{ matrix.bob }}_${{ matrix.recipient }}_test.age @@ -155,7 +155,7 @@ jobs: - name: Decrypt from ASCII-armored file run: ./${{ matrix.bob }} -d -i key.txt test2.age | grep -q "^2 test 2 string$" - name: Store test2.age - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: failure() with: name: ${{ matrix.alice }}_${{ matrix.bob }}_${{ matrix.recipient }}_test2.age @@ -166,7 +166,7 @@ jobs: - name: Decrypt from ASCII-armored CRLF file run: ./${{ matrix.bob }} -d -i key.txt test2.age | grep -q "^2 test 2 string$" - name: Store CRLF-ed test2.age - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: failure() with: name: ${{ matrix.alice }}_${{ matrix.bob }}_${{ matrix.recipient }}_test2.age @@ -175,7 +175,7 @@ jobs: - name: Pipes! run: echo "Test string 3 - ASCII Drift" | ./${{ matrix.alice }} $AGE_PUBKEY | tee --output-error=warn test3.age | ./${{ matrix.bob }} -d -i key.txt | grep -q "^Test string 3 - ASCII Drift$" - name: Store test3.age - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: failure() with: name: ${{ matrix.alice }}_${{ matrix.bob }}_${{ matrix.recipient }}_test3.age @@ -186,7 +186,7 @@ jobs: - name: Explicit stdin during decryption run: cat test4.age | ./${{ matrix.bob }} -d -i key.txt - | grep -q "^2 test 2 string$" - name: Store test4.age - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: failure() with: name: ${{ matrix.alice }}_${{ matrix.bob }}_${{ matrix.recipient }}_test4.age