Skip to content

Commit

Permalink
Update actions.yaml
Browse files Browse the repository at this point in the history
Makes it use the newest version of checkout and upload-artifact. Makes the warnings dissapear
  • Loading branch information
Fancy2209 authored Jan 13, 2024
1 parent 1aa1d3c commit 8930ef2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/actions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
build-deb:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Checkout submodules
shell: bash
Expand All @@ -32,15 +32,15 @@ jobs:
mkdir dist && mv ../*.deb dist
- name: Upload artifacts
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@4
with:
name: 'debs'
path: dist/

build-dsc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Checkout submodules
shell: bash
Expand All @@ -60,7 +60,7 @@ jobs:
mkdir source && mv ../*~$(lsb_release -cs).* source
- name: Upload artifacts
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: 'source'
path: source/

0 comments on commit 8930ef2

Please sign in to comment.