Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/package.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Package

Check warning on line 1 in .github/workflows/package.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

excessive-permissions

package.yml:1: overly broad permissions: default permissions used due to no permissions: block

on:
push:
Expand All @@ -10,7 +10,7 @@
cargo-deb-version: 3.3.0

jobs:
build:

Check warning on line 13 in .github/workflows/package.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

excessive-permissions

package.yml:13: overly broad permissions: default permissions used due to no permissions: block
runs-on: ubuntu-latest
strategy:
matrix:
Expand All @@ -34,7 +34,7 @@
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install ${{ matrix.binutils }}
- name: Toolchain
uses: actions-rs/toolchain@16499b5e05bf2e26879000db0c1d13f7e13fa3af # v1

Check warning on line 37 in .github/workflows/package.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

archived-uses

package.yml:37: action or reusable workflow from archived repository: repository is archived
with:
toolchain: stable
target: ${{ matrix.target }}
Expand Down Expand Up @@ -62,7 +62,7 @@
run: cargo install cargo-deb --version ${{ env.cargo-deb-version }} --locked

- name: Cross build
uses: actions-rs/cargo@844f36862e911db73fe0815f00a4a2602c279505 # v1

Check warning on line 65 in .github/workflows/package.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

archived-uses

package.yml:65: action or reusable workflow from archived repository: repository is archived
with:
use-cross: true
command: build
Expand Down Expand Up @@ -94,7 +94,7 @@
regex: "^refs/tags/(.+)$"
- name: Create draft release
id: create_release
uses: actions/create-release@0cb9c9b65d5d1901c1f53e5e66eaf4afd303e70e # v1

Check warning on line 97 in .github/workflows/package.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

archived-uses

package.yml:97: action or reusable workflow from archived repository: repository is archived
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions.
with:
Expand All @@ -103,7 +103,7 @@
draft: true
prerelease: false
- name: Upload packages to release
uses: shogo82148/actions-upload-release-asset@d0cb37bb764791e72e64e643cd7056f74f1e77d7 # v1.10.3
uses: shogo82148/actions-upload-release-asset@aaba0f56bdbc1071f4af234d5cb16055e8a400de # v1.10.4
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: "debian-package-*/aarch64-esr-decoder_*.deb"
Expand Down
Loading