Skip to content

Commit

Permalink
Bump actions/checkout from 3 to 4 (#26)
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]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Sep 4, 2023
1 parent 1aacc69 commit 9d430af
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 21 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: ⬆️ Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: 🔧 Setup java
uses: actions/setup-java@v3
with:
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
working-directory: app
steps:
- name: ⬆️ Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Get flutter version
shell: bash
run: |
Expand Down Expand Up @@ -116,7 +116,7 @@ jobs:
working-directory: app
steps:
- name: ⬆️ Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Get dependencies
run: |
sudo apt-get update
Expand Down Expand Up @@ -229,7 +229,7 @@ jobs:
working-directory: app
steps:
- name: ⬆️ Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Get dependencies
run: |
sudo apt-get update
Expand Down Expand Up @@ -316,7 +316,7 @@ jobs:
# working-directory: app
# steps:
# - name: ⬆️ Checkout
# uses: actions/checkout@v3
# uses: actions/checkout@v4
# - name: Get flutter version
# run: |
# FLUTTER_VERSION=$(cat ../FLUTTER_VERSION)
Expand Down Expand Up @@ -349,7 +349,7 @@ jobs:
# architecture:
# - amd64
# steps:
# - uses: actions/checkout@v3
# - uses: actions/checkout@v4
# - uses: docker/setup-qemu-action@v2
# with:
# image: tonistiigi/binfmt@sha256:df15403e06a03c2f461c1f7938b171fda34a5849eb63a70e2a2109ed5a778bde
Expand All @@ -375,7 +375,7 @@ jobs:
#- build-macos
steps:
- name: ⬆️ Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
env:
CI_PAT: ${{ secrets.CI_PAT }}
with:
Expand Down Expand Up @@ -505,7 +505,7 @@ jobs:
PLAY_STORE_CREDENTIALS: ${{ secrets.PLAY_STORE_CREDENTIALS }}
steps:
- name: ⬆️ Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
token: ${{ secrets.CI_PAT }}
- name: Setup git
Expand Down Expand Up @@ -561,7 +561,7 @@ jobs:
needs: [deploy]
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
token: ${{ secrets.CI_PAT }}
- if: ${{ github.ref == 'refs/tags/stable' }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/calibreapp-image-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Compress Images
uses: calibreapp/image-actions@main
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/compress-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Compress Images
id: calibre
uses: calibreapp/image-actions@main
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/dart.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
working-directory: ${{ matrix.project }}
steps:
- name: ⬆️ Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Get flutter version
working-directory: ./
run: |
Expand All @@ -23,7 +23,7 @@ jobs:
with:
flutter-version: ${{ env.FLUTTER_VERSION }}
channel: 'any'
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Print Dart SDK version
run: |
dart --version
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
if: github.event_name != 'push'
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: '18'
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
update-changelog:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
token: ${{ secrets.CI_PAT }}
fetch-depth: 0
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
version: ${{ steps.setup.outputs.FLOW_VERSION }}
build_number: ${{ steps.setup.outputs.FLOW_BUILD_NUMBER }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
token: ${{ secrets.CI_PAT }}
ref: ${{ github.ref }}
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
FLOW_VERSION="${{ env.FLOW_VERSION }}"
git tag -fa v${{ env.FLOW_VERSION }} -m "Release ${FLOW_VERSION}"
git push origin v${FLOW_VERSION} -f
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
token: ${{ secrets.CI_PAT }}
fetch-depth: 0
Expand Down Expand Up @@ -133,7 +133,7 @@ jobs:
- update-changelog
- release
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
token: ${{ secrets.CI_PAT }}
fetch-depth: 0
Expand Down Expand Up @@ -183,14 +183,14 @@ jobs:
steps:
- name: Checkout main
if: ${{ github.ref == 'refs/heads/develop' }}
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
token: ${{ secrets.CI_PAT }}
fetch-depth: 0
ref: main
- name: Checkout develop
if: ${{ github.ref == 'refs/heads/main' }}
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
token: ${{ secrets.CI_PAT }}
fetch-depth: 0
Expand Down Expand Up @@ -235,7 +235,7 @@ jobs:
runs-on: ubuntu-22.04
needs: [release]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
token: ${{ secrets.CI_PAT }}
- name: Get information
Expand Down

0 comments on commit 9d430af

Please sign in to comment.