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
22 changes: 11 additions & 11 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Build base image
if: ${{ matrix.has_base }}
run: |
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Build and push
uses: docker/build-push-action@v6
with:
Expand Down Expand Up @@ -161,7 +161,7 @@ jobs:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Build and push
uses: docker/build-push-action@v6
with:
Expand Down Expand Up @@ -216,7 +216,7 @@ jobs:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Build and push
uses: docker/build-push-action@v6
with:
Expand All @@ -238,7 +238,7 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Move nightly tag to head for nightly release
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
run: git tag -f nightly && git push origin nightly -f
Expand All @@ -253,10 +253,10 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Cache Qt
id: cache-qt
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
/Users/runner/work/deps/qt
Expand All @@ -273,7 +273,7 @@ jobs:
- name: Build tarball
run: tar -zcf qt-static-macos-${{ matrix.arch }}-${{ matrix.macos }}.tar.gz -C /Users/runner/work/deps qt
- name: Upload artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: qt-static-macos-${{ matrix.arch }}-${{ matrix.macos }}-qt
path: qt-static-macos-${{ matrix.arch }}-${{ matrix.macos }}.tar.gz
Expand Down Expand Up @@ -305,9 +305,9 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Download host Qt
uses: actions/download-artifact@v4
uses: actions/download-artifact@v7
with:
name: qt-static-macos-${{ matrix.host_arch }}-12.0-qt
- name: Extract host Qt
Expand All @@ -316,7 +316,7 @@ jobs:
tar -zxf qt-static-macos-${{ matrix.host_arch }}-12.0.tar.gz --strip-components=1 -C /Users/runner/work/host-qt
- name: Cache Qt
id: cache-qt
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
/Users/runner/work/deps/qt
Expand Down
Loading