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
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,15 +134,15 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4

- name: Set up QEMU for cross-platform builds
uses: docker/setup-qemu-action@v3
uses: docker/setup-qemu-action@v4
with:
platforms: all

Expand Down Expand Up @@ -243,14 +243,14 @@ jobs:
echo "Wrote $out"

- name: Upload version report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: "aasdk-deb-versions-${{ matrix.distro }}-${{ matrix.arch }}"
path: "deb-versions-${{ matrix.distro }}-${{ matrix.arch }}.md"
retention-days: 60

- name: Upload build artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: "aasdk-packages-${{ matrix.distro }}-${{ matrix.arch }}"
path: |
Expand All @@ -265,10 +265,10 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Download build artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
pattern: aasdk-packages-*
merge-multiple: true
Expand Down Expand Up @@ -307,7 +307,7 @@ jobs:
done

- name: Upload test report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: aasdk-test-report-${{ github.run_number }}
path: test-report.md
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down Expand Up @@ -229,13 +229,13 @@ jobs:
cat ../RELEASE_NOTES.md

- name: Ensure git metadata
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0

- name: Create GitHub Release
id: create_release
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ steps.release_info.outputs.version || github.run_number }}
name: "AASDK Release ${{ steps.release_info.outputs.version || github.run_number }}"
Expand Down
Loading
Loading