Skip to content

Commit

Permalink
Merge pull request #2838 from pbek/dependabot/github_actions/actions/…
Browse files Browse the repository at this point in the history
…checkout-4

build(deps): bump actions/checkout from 3 to 4
  • Loading branch information
pbek committed Sep 11, 2023
2 parents 2bc79d6 + 91f959a commit e7e4bef
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-deploy-release-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Log in to the Container registry
uses: docker/login-action@3da7dc6e2b31f99ef2cb9fb4c50fb0971e0d0139
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-deploy-webpage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
# copy screenshots and changelog to webpage folder
- run: cp ../screenshots src/.vuepress/public -R; cp ../CHANGELOG.md src/changelog.md
- name: Set up QEMU
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build-release-next.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
upload_url: ${{ steps.create_release.outputs.upload_url }}
release_id: ${{ steps.create_release.outputs.id }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set Env
run: |
export VERSION=$(cat version.h | sed 's/[^0-9,.]//g')
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
steps:

- name: '🧰 Checkout'
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: recursive

Expand Down Expand Up @@ -177,7 +177,7 @@ jobs:
# steps:
#
# - name: '🧰 Checkout'
# uses: actions/checkout@v3
# uses: actions/checkout@v4
# with:
# submodules: recursive
#
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/build-release-qt6.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
upload_url: ${{ steps.create_release.outputs.upload_url }}
release_id: ${{ steps.create_release.outputs.id }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set Env
run: |
export VERSION=$(cat version.h | sed 's/[^0-9,.]//g')
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
steps:

- name: '🧰 Checkout'
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: recursive

Expand Down Expand Up @@ -197,7 +197,7 @@ jobs:
steps:

- name: '🧰 Checkout'
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: recursive

Expand Down Expand Up @@ -280,7 +280,7 @@ jobs:
steps:

- name: '🧰 Checkout'
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: recursive

Expand Down Expand Up @@ -362,7 +362,7 @@ jobs:
steps:

- name: '🧰 Checkout'
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: recursive

Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
upload_url: ${{ steps.create_release.outputs.upload_url }}
release_id: ${{ steps.create_release.outputs.id }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set Env
run: |
export VERSION=$(cat version.h | sed 's/[^0-9,.]//g')
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:
steps:

- name: '🧰 Checkout'
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: recursive

Expand Down Expand Up @@ -183,7 +183,7 @@ jobs:
steps:

- name: '🧰 Checkout'
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: recursive

Expand Down Expand Up @@ -257,7 +257,7 @@ jobs:
steps:

- name: '🧰 Checkout'
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: recursive

Expand Down Expand Up @@ -337,7 +337,7 @@ jobs:
steps:

- name: '🧰 Checkout'
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: recursive

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
qt-version: '5.15.2'
experimental: false
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: true

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-webpage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- id: files
uses: masesgroup/retrieve-changed-files@v2
with:
Expand Down

0 comments on commit e7e4bef

Please sign in to comment.