diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-10-16 11:19:21 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-10-16 11:19:21 +0200 |
commit | 49ab9b889bec9c212dd81b577b0249869a8cef94 (patch) | |
tree | 76661a2df542042f92fde34dc36acffdee5a4a45 /.github/workflows/ppa.yml | |
parent | Merge branch 'master' into debian (diff) | |
download | linux-status-49ab9b889bec9c212dd81b577b0249869a8cef94.tar.gz linux-status-49ab9b889bec9c212dd81b577b0249869a8cef94.zip |
workflows: upgrade actions
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/ppa.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ppa.yml b/.github/workflows/ppa.yml index afc7790..bc59393 100644 --- a/.github/workflows/ppa.yml +++ b/.github/workflows/ppa.yml @@ -10,13 +10,13 @@ jobs: name: Upload to PPA steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 - name: Import GPG key - uses: crazy-max/ghaction-import-gpg@v3 + uses: crazy-max/ghaction-import-gpg@v5 with: - gpg-private-key: '${{ secrets.GPG_PRIVATE_KEY }}' + gpg_private_key: '${{ secrets.GPG_PRIVATE_KEY }}' passphrase: '${{ secrets.GPG_PASSPHRASE }}' - name: Install dependencies run: cd debian && sudo make deps |