Skip to content
Open
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
20 changes: 10 additions & 10 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,13 +70,13 @@ jobs:
if: ${{ always() && runner.os == 'Linux' }}
run: env -0 | sort -z | tr '\0' '\n'

- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
repository: 'apache/qpid-proton'
ref: ${{ matrix.protonGitRef }}
path: 'qpid-proton'

- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
path: 'qpid-dispatch'

Expand Down Expand Up @@ -427,13 +427,13 @@ jobs:
- name: Check that Node20 works inside in-docker steps
run: /__e/node20/bin/node -e 'console.log("Hello World")'

- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
repository: 'apache/qpid-proton'
ref: ${{ matrix.protonGitRef }}
path: 'qpid-proton'

- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
path: 'qpid-dispatch'

Expand Down Expand Up @@ -614,7 +614,7 @@ jobs:
- name: Install python-checker test dependencies
run: python3 -m pip install tox

- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Create Build and Install directories
run: mkdir -p "${DispatchBuildDir}" "{InstallPrefix}"
Expand Down Expand Up @@ -646,7 +646,7 @@ jobs:
-DCONSOLE_INSTALL=OFF
steps:

- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Create Build and Install directories
run: mkdir -p "${DispatchBuildDir}" "{InstallPrefix}"
Expand Down Expand Up @@ -702,7 +702,7 @@ jobs:
name: Console Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Install Dependencies
run: cd console/react && npm ci
Expand All @@ -714,7 +714,7 @@ jobs:
name: Console ESLint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Install Dependencies
run: cd console/react && npm ci
Expand All @@ -726,7 +726,7 @@ jobs:
name: RAT Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: actions/cache@v4
with:
path: ~/.m2/repository
Expand Down Expand Up @@ -761,7 +761,7 @@ jobs:
#- dockerfiles/Dockerfile-fedora
#- dockerfiles/Dockerfile-ubuntu
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Build Debian image
uses: docker/build-push-action@v6
Expand Down
Loading