Skip to content

Commit

Permalink
Update GH actions
Browse files Browse the repository at this point in the history
Signed-off-by: clexanis <[email protected]>
  • Loading branch information
clexanis committed Dec 21, 2023
1 parent 57f248e commit 9d9240b
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 9 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
name: 'Build a test package'
on: [pull_request]
on:
pull_request:
push:
jobs:
build:
runs-on: ubuntu-latest
Expand All @@ -8,16 +10,16 @@ jobs:
steps:
- name: 'Check out the repo'
id: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: 'Build package'
id: build
uses: jtdor/build-deb-action@v1.7.0
uses: jtdor/build-deb-action@v1
with:
buildpackage-opts: -us -uc
docker-image: debian:bullseye-slim
docker-image: debian:bookworm-slim
- name: 'Upload artifacts'
id: upload
uses: actions/upload-artifact@v3.1.2
uses: actions/upload-artifact@v4
with:
name: package
path: debian/artifacts
2 changes: 1 addition & 1 deletion .github/workflows/dependency-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 'Checkout Repository'
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: 'Dependency Review'
uses: actions/dependency-review-action@v3
8 changes: 5 additions & 3 deletions .github/workflows/super-linter.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
name: 'Lint Code Base'
on: [pull_request]
on:
pull_request:
push:
jobs:
run-lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Lint Code Base
uses: github/super-linter@v4
uses: github/super-linter@v5
env:
VALIDATE_ALL_CODEBASE: false
DEFAULT_BRANCH: "main"
Expand Down

0 comments on commit 9d9240b

Please sign in to comment.