Skip to content

Commit

Permalink
Bump actions/checkout from 3 to 4
Browse files Browse the repository at this point in the history
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v3...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored and zoff99 committed Mar 23, 2024
1 parent 83eb2dc commit 596974c
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 23 deletions.
38 changes: 19 additions & 19 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@v3
- uses: actions/checkout@v4
- 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@v3
- uses: actions/checkout@v4
- 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@v3
- uses: actions/checkout@v4
- 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@v3
- uses: actions/checkout@v4
- 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@v3
- uses: actions/checkout@v4
- 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@v3
- uses: actions/checkout@v4
- uses: ./.github/actions/build-docker-image
name: "Build docker image"
with:
Expand All @@ -83,7 +83,7 @@ jobs:
runs-on: ubuntu-22.04
if: ${{ false }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./.github/actions/build-docker-image
name: "Build docker image"
with:
Expand All @@ -92,7 +92,7 @@ jobs:
name: Build windows docker image
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./.github/actions/build-docker-image
name: "Build docker image"
with:
Expand All @@ -101,7 +101,7 @@ jobs:
name: Build 32 bit windows docker image
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./.github/actions/build-docker-image
name: "Build docker image"
with:
Expand All @@ -115,7 +115,7 @@ jobs:
features: [full, minimal]
build_type: [Debug, Release]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./.github/actions/load-docker-image
name: Load docker image
with:
Expand All @@ -132,7 +132,7 @@ jobs:
features: [full, minimal]
build_type: [Debug, Release]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./.github/actions/load-docker-image
name: Load docker image
with:
Expand All @@ -143,7 +143,7 @@ jobs:
name: Check for translatable strings
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install deps
run: sudo apt-get update && sudo apt-get install qttools5-dev
- name: Test for modified translatable strings
Expand All @@ -162,7 +162,7 @@ jobs:
features: [full, minimal]
build_type: [Debug, Release]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./.github/actions/load-docker-image
name: Load docker image
with:
Expand All @@ -189,7 +189,7 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./.github/actions/load-docker-image
name: Load docker image
with:
Expand Down Expand Up @@ -259,7 +259,7 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./.github/actions/load-docker-image
name: Load docker image
with:
Expand Down Expand Up @@ -329,7 +329,7 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./.github/actions/load-docker-image
name: Load docker image
with:
Expand Down Expand Up @@ -397,7 +397,7 @@ jobs:
matrix:
build_type: [Debug, Release]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./.github/actions/load-docker-image
name: Load docker image
with:
Expand Down Expand Up @@ -493,7 +493,7 @@ jobs:
matrix:
build_type: [Debug, Release]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./.github/actions/load-docker-image
name: Load docker image
with:
Expand Down Expand Up @@ -569,7 +569,7 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- 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@v3
- uses: actions/checkout@v4

- 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@v3
- uses: actions/checkout@v4
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@v3
- uses: actions/checkout@v4
- 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@v3
- uses: actions/checkout@v4
- name: install cliclick
run: brew install cliclick

Expand Down

0 comments on commit 596974c

Please sign in to comment.