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
28 changes: 14 additions & 14 deletions .github/workflows/build-test-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,15 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Move nightly tag to head for nightly release
run: git tag -f nightly && git push origin nightly -f
build-flatpak-docker:
name: Build flatpak docker
runs-on: ubuntu-22.04
if: ${{ true }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: ./.github/actions/build-docker-image
name: "Build docker image"
with:
Expand All @@ -46,7 +46,7 @@ jobs:
name: Build ubuntu LTS docker image
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: ./.github/actions/build-docker-image
name: "Build docker image"
with:
Expand All @@ -55,7 +55,7 @@ jobs:
name: Build ubuntu for AppImage docker image
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: ./.github/actions/build-docker-image
name: "Build docker image"
with:
Expand All @@ -64,7 +64,7 @@ jobs:
name: Build ubuntu for ASAN AppImage docker image
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: ./.github/actions/build-docker-image
name: "Build docker image"
with:
Expand All @@ -73,7 +73,7 @@ jobs:
name: Build debian docker image
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: ./.github/actions/build-docker-image
name: "Build docker image"
with:
Expand All @@ -87,7 +87,7 @@ jobs:
features: [full, minimal]
build_type: [Debug, Release]
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: ./.github/actions/load-docker-image
name: Load docker image
with:
Expand All @@ -98,7 +98,7 @@ jobs:
name: Check for translatable strings
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Install deps
run: sudo apt-get update && sudo apt-get install qttools5-dev
- name: Test for modified translatable strings
Expand All @@ -117,7 +117,7 @@ jobs:
features: [full, minimal]
build_type: [Debug, Release]
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: ./.github/actions/load-docker-image
name: Load docker image
with:
Expand All @@ -144,7 +144,7 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: ./.github/actions/load-docker-image
name: Load docker image
with:
Expand Down Expand Up @@ -214,7 +214,7 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: ./.github/actions/load-docker-image
name: Load docker image
with:
Expand Down Expand Up @@ -284,7 +284,7 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: ./.github/actions/load-docker-image
name: Load docker image
with:
Expand Down Expand Up @@ -355,7 +355,7 @@ jobs:
matrix:
build_type: [Release]
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: build deps
run: sudo ./buildscripts/docker/nondocker_windows_builder.sh --src-dir /qtox
Expand Down Expand Up @@ -457,7 +457,7 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Homebrew dependencies to build dependencies
run: brew update || echo "some errors" ; echo "==111111111111==" ; brew bundle --file ./osx/Brewfile-DepBuildDeps || echo "some errors" ; echo "==222222222222==" ; brew upgrade || echo "some errors"
- name: Build dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/change_log.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-22.04
environment: genlog_gen_token
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: install pkgs
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/commit-format.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
env:
GITHUB_CONTEXT: ${{ github.event.pull_request.commits_url }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0 # so that we can see the full commit range
- name: Run
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nixos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
name: nixos test
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Run test
uses: addnab/docker-run-action@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/startup-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: install cliclick
run: brew install cliclick

Expand Down
Loading