Skip to content
Open
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
4 changes: 2 additions & 2 deletions .github/workflows/lint_master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ on:

jobs:
axivion:
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04

steps:
- name : Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Trigger pipeline
env:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release_build_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-18.04]
os: [ubuntu-20.04]
steps:
- name: Install iceoryx dependencies
run: |
Expand All @@ -27,7 +27,7 @@ jobs:
sudo apt-get install -y plantuml texlive-latex-base texlive-latex-extra texlive-latex-recommended texlive-fonts-recommended

- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
ref: ${{ github.event.inputs.ReleaseTag }}
env:
Expand All @@ -47,7 +47,7 @@ jobs:
$GITHUB_WORKSPACE/tools/iceoryx_build_test.sh clean dds-gateway package

- name: Upload release artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: release_artifacts
path: ./build_package/iceoryx*.deb
Expand All @@ -59,13 +59,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download release artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: release_artifacts

- name: Create Release
id: create_release
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
Expand Down