Skip to content
Merged
Show file tree
Hide file tree
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
12 changes: 6 additions & 6 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out gvmd
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Check Source Format
run: |
clang-format -i -style=file src/gmp_{base,delete,get,tickets}.h \
Expand All @@ -29,7 +29,7 @@ jobs:
container: ${{ vars.SELF_HOSTED_REGISTRY || 'registry.community.greenbone.net' }}/community/gvm-libs:stable
steps:
- name: Check out gvmd
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Install clang tools
run: |
apt update
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
- testing
container: ${{ vars.SELF_HOSTED_REGISTRY || 'registry.community.greenbone.net' }}/community/gvm-libs:${{ matrix.container }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Install build dependencies
run: sh .github/install-dependencies.sh .github/build-dependencies.list
- name: Configure and compile gvmd
Expand All @@ -78,7 +78,7 @@ jobs:
- testing
container: ${{ vars.SELF_HOSTED_REGISTRY || 'registry.community.greenbone.net' }}/community/gvm-libs:${{ matrix.container }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Install build dependencies
run: sh .github/install-dependencies.sh .github/build-dependencies.list
- name: Configure and compile gvmd
Expand All @@ -93,7 +93,7 @@ jobs:
container: ${{ vars.SELF_HOSTED_REGISTRY || 'registry.community.greenbone.net' }}/community/gvm-libs:stable
steps:
- name: Check out gvmd
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Install git for Codecov uploader
run: |
apt update
Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:
name: Check CMake Formatting
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: greenbone/actions/uv@v3
with:
install: gersemi
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
container: ${{ vars.SELF_HOSTED_REGISTRY || 'registry.community.greenbone.net' }}/community/gvm-libs:stable
steps:
- name: Check out gvmd
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Generate GMP documentation (HTML)
run: |
mkdir build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: 'ubuntu-latest'
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0 # for conventional commits and getting all git tags
persist-credentials: false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis-c.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Install build dependencies
run: sh .github/install-dependencies.sh .github/build-dependencies.list
- name: Initialize CodeQL
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
with:
release-type-input: ${{ inputs.release-type }}
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0 # for conventional commits and getting all git tags
persist-credentials: false
Expand Down
Loading