diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index af5fcdc..17d2862 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -29,7 +29,7 @@ jobs: strip: true steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Install Rust toolchain id: install_rust @@ -44,7 +44,7 @@ jobs: sudo apt-get update sudo apt-get install build-essential clang-format libgtk-3-dev - - uses: actions/cache@v2 + - uses: actions/cache@v4 with: path: | ~/.cargo/registry @@ -62,7 +62,7 @@ jobs: - name: Upload artifact uses: actions/upload-artifact@v4 with: - name: foliff-${{ matrix.binsuffix }} + name: foldiff-${{ matrix.binsuffix }} path: ${{ matrix.file }} release: @@ -72,7 +72,7 @@ jobs: if: startsWith(github.ref, 'refs/tags/') steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/download-artifact@v4 with: @@ -92,8 +92,8 @@ jobs: - name: Get some values needed for the release id: release_values run: | - echo "::set-output name=date::$(date '+%Y-%m-%d')" - echo "::set-output name=tag::${GITHUB_REF#refs/tags/}" + echo "date=$(date '+%Y-%m-%d')" >> $GITHUB_OUTPUT + echo "tag=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT - name: Rename files run: |