LabCodeHub öffentliche Ansicht
Anmelden
Küpper / Quildrop öffentlich

chore(deps): update github artifact actions (#6)

Co-authored-by: Renovate Bot <renovate@whitesourcesoftware.com>
R Rüdiger Küpper <rpr@9it.de> committete am 27.02.2026 23:03
21f04ec8ae4faf990015f00b51ea2b0332b33b7e
1 geänderte Datei(en) +2 −2
Kontextzeilen: 0 1 2 3 10
geändert .github/workflows/build-and-release.yml
+2 −2 Datei ansehen
@@ -77,32 +77,32 @@ jobs:
77 77
78 78
      - name: Generate checksum
79 79
        env:
80 80
          SUFFIX: ${{ matrix.goos }}-${{ matrix.goarch }}${{ matrix.goarm && format('v{0}', matrix.goarm) || '' }}
81 81
        run: |
82 82
          cd dist
83 83
          sha256sum * > checksums-${SUFFIX}.txt
84 84
          cat checksums-${SUFFIX}.txt
85 85
86 86
      - name: Upload artifact
87 -
        uses: actions/upload-artifact@v6
87 +
        uses: actions/upload-artifact@v7
88 88
        with:
89 89
          name: ${{ env.BINARY_NAME }}-${{ matrix.goos }}-${{ matrix.goarch }}${{ matrix.goarm && format('v{0}', matrix.goarm) || '' }}
90 90
          path: dist/*
91 91
          if-no-files-found: error
92 92
93 93
  release:
94 94
    needs: build
95 95
    runs-on: ubuntu-latest
96 96
    steps:
97 97
      - name: Download all artifacts
98 -
        uses: actions/download-artifact@v7
98 +
        uses: actions/download-artifact@v8
99 99
        with:
100 100
          path: artifacts
101 101
          merge-multiple: true
102 102
103 103
      - name: Merge checksums
104 104
        run: |
105 105
          cd artifacts
106 106
          cat checksums-*.txt > checksums.txt
107 107
          rm checksums-*.txt
108 108
          echo "=== checksums.txt ==="