diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-10-16 11:21:25 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-10-16 11:21:25 +0200 |
commit | 6140a6bec0dc0c83388c1863b326ae52f024428a (patch) | |
tree | 7538726a6fcee20395d3ee6fab8cc49e64d2cdcd | |
parent | Merge branch 'master' into debian (diff) | |
download | config-links-6140a6bec0dc0c83388c1863b326ae52f024428a.tar.gz config-links-6140a6bec0dc0c83388c1863b326ae52f024428a.zip |
workflows: upgrade actions
-rw-r--r-- | .github/workflows/debian.yml | 4 | ||||
-rw-r--r-- | .github/workflows/ppa.yml | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/debian.yml b/.github/workflows/debian.yml index 1919048..5b4f81c 100644 --- a/.github/workflows/debian.yml +++ b/.github/workflows/debian.yml @@ -11,7 +11,7 @@ jobs: name: Binary package steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 - name: Install dependencies @@ -19,7 +19,7 @@ jobs: - name: Build binary package run: cd debian && make bin/test - name: Upload binary package - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: build-area path: debian/build-area/ 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 |