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 @@ -379,7 +379,7 @@ jobs:

steps:
- name: Merge Artifacts
uses: actions/upload-artifact/merge@v4
uses: actions/upload-artifact/merge@v7
with:
name: jetsocat
pattern: jetsocat-*
Expand Down Expand Up @@ -437,12 +437,12 @@ jobs:
path: ./.github/workflows

- name: Setup pnpm
uses: pnpm/action-setup@v4
uses: pnpm/action-setup@v5
with:
version: 10

- name: Setup Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: '20.x'
cache: 'pnpm'
Expand Down Expand Up @@ -678,7 +678,7 @@ jobs:

- name: Add msbuild to PATH
if: ${{ matrix.os == 'windows' }}
uses: microsoft/setup-msbuild@v2
uses: microsoft/setup-msbuild@v3

- name: Package
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository }}
Expand Down Expand Up @@ -730,7 +730,7 @@ jobs:

steps:
- name: Merge Artifacts
uses: actions/upload-artifact/merge@v4
uses: actions/upload-artifact/merge@v7
with:
name: devolutions-gateway
pattern: devolutions-gateway-*
Expand All @@ -748,7 +748,7 @@ jobs:
ref: ${{ needs.preflight.outputs.ref }}

- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v2
uses: microsoft/setup-msbuild@v3

- name: Build
run: ./dotnet/DesktopAgent/build.ps1
Expand Down Expand Up @@ -896,7 +896,7 @@ jobs:

- name: Add msbuild to PATH
if: ${{ matrix.os == 'windows' }}
uses: microsoft/setup-msbuild@v2
uses: microsoft/setup-msbuild@v3

- name: Build
run: |
Expand Down Expand Up @@ -978,7 +978,7 @@ jobs:

steps:
- name: Merge Artifacts
uses: actions/upload-artifact/merge@v4
uses: actions/upload-artifact/merge@v7
with:
name: devolutions-agent
pattern: devolutions-agent-*
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/jetify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ jobs:

- name: Restore Detours Cache (${{matrix.arch}})
id: cache-detours
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: dependencies/detours
key: detours-${{ matrix.arch }}-${{ needs.preflight.outputs.detours-git-commit }}
Expand All @@ -138,7 +138,7 @@ jobs:

- name: Save Detours Cache (${{matrix.arch}})
if: ${{ steps.cache-detours.outputs.cache-hit != 'true' }}
uses: actions/cache/save@v4
uses: actions/cache/save@v5
with:
path: dependencies/detours
key: detours-${{ matrix.arch }}-${{ needs.preflight.outputs.detours-git-commit }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ jobs:

- name: Add msbuild to PATH
if: ${{ matrix.os == 'windows' && (matrix.project == 'devolutions-gateway' || matrix.project == 'devolutions-agent') }}
uses: microsoft/setup-msbuild@v2
uses: microsoft/setup-msbuild@v3

- name: Download native-libs
if: ${{ matrix.project == 'devolutions-gateway' && matrix.os == 'windows' }}
Expand Down Expand Up @@ -618,7 +618,7 @@ jobs:

steps:
- name: Merge Artifacts
uses: actions/upload-artifact/merge@v4
uses: actions/upload-artifact/merge@v7
with:
name: devolutions-gateway-signed
pattern: devolutions-gateway-*-signed
Expand All @@ -631,7 +631,7 @@ jobs:

steps:
- name: Merge Artifacts
uses: actions/upload-artifact/merge@v4
uses: actions/upload-artifact/merge@v7
with:
name: devolutions-agent-signed
pattern: devolutions-agent-*-signed
Expand All @@ -644,7 +644,7 @@ jobs:

steps:
- name: Merge Artifacts
uses: actions/upload-artifact/merge@v4
uses: actions/upload-artifact/merge@v7
with:
name: jetsocat-signed
pattern: jetsocat-*-signed
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/publish-libraries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:

steps:
- name: Merge Artifacts
uses: actions/upload-artifact/merge@v4
uses: actions/upload-artifact/merge@v7
with:
name: nupkg
pattern: nupkg-*
Expand All @@ -109,12 +109,12 @@ jobs:
uses: actions/checkout@v6

- name: Setup pnpm
uses: pnpm/action-setup@v4
uses: pnpm/action-setup@v5
with:
version: 10

- name: Setup Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: '20'
cache: 'pnpm'
Expand Down Expand Up @@ -144,7 +144,7 @@ jobs:

steps:
- name: Merge Artifacts
uses: actions/upload-artifact/merge@v4
uses: actions/upload-artifact/merge@v7
with:
name: npm
pattern: npm-*
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -230,18 +230,18 @@ jobs:
# Without QEMU, we would need native ARM64 runners (which are more expensive and less available).
# Note: QEMU is only used during the IMAGE BUILD, not at runtime - the final images are native.
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
uses: docker/setup-qemu-action@v4

# Docker Buildx is required for multi-platform builds and creating manifest lists.
# It provides:
# 1. The ability to build for multiple architectures in a single command
# 2. The 'docker buildx imagetools' command for creating multi-arch manifests
# 3. Better caching and build performance compared to legacy docker build
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4

- name: Login to Docker Hub
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
username: devolutionsbot
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
Expand Down
Loading