Skip to content

Commit

Permalink
ci: remove c8s and update github actions
Browse files Browse the repository at this point in the history
Remove CentOS 8 from the pipeline and update our github actions.

Signed-off-by: Jean-Louis Dupond <[email protected]>
  • Loading branch information
dupondje committed Jan 30, 2025
1 parent 507a52c commit 6ab34e1
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,6 @@ jobs:
fail-fast: false
matrix:
include:
- name: centos-stream-8
shortcut: cs8
container-name: el8stream
- name: centos-stream-9
shortcut: cs9
container-name: el9stream
Expand All @@ -36,7 +33,7 @@ jobs:
run: git config --global --add safe.directory $(pwd)

- name: Use cache for maven
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
Expand All @@ -57,7 +54,7 @@ jobs:
directory: ${{ env.ARTIFACTS_DIR }}

- name: Upload generated documentation artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: generated-documentation-${{ matrix.shortcut }}
path: target/html/*
Expand All @@ -73,10 +70,10 @@ jobs:
image: quay.io/centos/centos:stream9
steps:
- name: Checkout sources
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Download generated documentation artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: generated-documentation-cs8
path: target
Expand All @@ -95,7 +92,7 @@ jobs:
git config --global user.email '41898282+github-actions[bot]@users.noreply.github.com'
- name: Checkout to gh-pages branch
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
ref: gh-pages
path: gh-pages
Expand Down

0 comments on commit 6ab34e1

Please sign in to comment.