Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump actions/checkout from 2.3.4 to 4.1.2
Browse files Browse the repository at this point in the history
Bumps [actions/checkout](https://github.com/actions/checkout) from 2.3.4 to 4.1.2.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@5a4ac90...9bb5618)

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

Signed-off-by: dependabot[bot] <support@github.com>
dependabot[bot] authored Apr 10, 2024
1 parent e1cabbf commit fcf143d
Showing 4 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cdelivery.yml
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Clone the repository
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633
- name: Ensure SHA pinned actions
uses: zgosalvez/github-actions-ensure-sha-pinned-actions@8877889a5717dad0b139f1d2925689aa68f88a43

@@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Clone the repository
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633
- name: Draft the release
id: release-drafter
uses: release-drafter/release-drafter@fe52e97d262833ae07d05efaf1a239df3f1b5cd4
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Clone the repository
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633
- name: Ensure SHA pinned actions
uses: zgosalvez/github-actions-ensure-sha-pinned-actions@8877889a5717dad0b139f1d2925689aa68f88a43

@@ -26,7 +26,7 @@ jobs:
fail-fast: false
steps:
- name: Clone the repository
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633
with:
path: code
- name: Get Flutter version
@@ -48,7 +48,7 @@ jobs:
cache-name: flutter-cache
- name: Clone the Flutter repository
if: steps.flutter-cache.outputs.cache-hit != 'true'
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633
with:
repository: flutter/flutter
ref: ${{ steps.get-flutter-version.outputs.version }}
@@ -88,7 +88,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Clone the repository
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633
- name: Download code coverage from GitHub
uses: actions/download-artifact@3be87be14a055c47b01d3bd88f8fe02320a9bb60
with:
10 changes: 5 additions & 5 deletions .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Clone the repository
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633
- name: Ensure SHA pinned actions
uses: zgosalvez/github-actions-ensure-sha-pinned-actions@8877889a5717dad0b139f1d2925689aa68f88a43

@@ -35,7 +35,7 @@ jobs:
fail-fast: false
steps:
- name: Clone the repository
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633
with:
path: code
- name: Get Flutter version
@@ -57,7 +57,7 @@ jobs:
cache-name: flutter-cache
- name: Clone the Flutter repository
if: steps.flutter-cache.outputs.cache-hit != 'true'
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633
with:
repository: flutter/flutter
ref: ${{ steps.get-flutter-version.outputs.version }}
@@ -113,7 +113,7 @@ jobs:
if: ${{ !(matrix.file == 'apk' && github.event.release.prerelease) || ((matrix.file == 'aab' || matrix.file == 'ipa') && !github.event.release.prerelease) }}
run: exit
- name: Clone the repository
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633
with:
path: code
- name: Get Flutter version
@@ -135,7 +135,7 @@ jobs:
cache-name: flutter-cache
- name: Clone the Flutter repository
if: steps.flutter-cache.outputs.cache-hit != 'true'
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633
with:
repository: flutter/flutter
ref: ${{ steps.get-flutter-version.outputs.version }}
2 changes: 1 addition & 1 deletion .github/workflows/pull_request-opened.yml
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Clone the repository
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633
- name: Ensure SHA pinned actions
uses: zgosalvez/github-actions-ensure-sha-pinned-actions@8877889a5717dad0b139f1d2925689aa68f88a43

0 comments on commit fcf143d

Please sign in to comment.