From 53098692eac0fe80997ac0bda88e73337520b6af Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 7 Nov 2023 10:05:26 +0000 Subject: [PATCH] Bump actions/checkout from 4.1.0 to 4.1.1 Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.0 to 4.1.1. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/8ade135a41bc03ea155e62e844d188df1ea18608...b4ffde65f46336ab88eb53be808477a3936bae11) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/actions_ci.yml | 4 ++-- .github/workflows/alpha.yml | 8 ++++---- .github/workflows/beta.yml | 8 ++++---- .github/workflows/cli_ci.yml | 6 +++--- .github/workflows/integration_tests_app_ci.yml | 10 +++++----- .github/workflows/licence.yml | 4 ++-- .github/workflows/safe_app_ci.yml | 8 ++++---- .github/workflows/stable.yml | 8 ++++---- .github/workflows/unsafe_app_ci.yml | 4 ++-- 9 files changed, 30 insertions(+), 30 deletions(-) diff --git a/.github/workflows/actions_ci.yml b/.github/workflows/actions_ci.yml index 5650966bb..64e69e51f 100644 --- a/.github/workflows/actions_ci.yml +++ b/.github/workflows/actions_ci.yml @@ -60,7 +60,7 @@ jobs: outputs: changesFound: ${{ steps.filter.outputs.changesFound }} steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - uses: AurorNZ/paths-filter@7c547bdd24124b0d69e07c96b62fd7fec5ced19a id: filter with: @@ -73,7 +73,7 @@ jobs: runs-on: ubuntu-22.04 if: ${{ needs.changes.outputs.changesFound == 'true' }} steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - name: Install Prettier run: npm install --global prettier@3.0.1 diff --git a/.github/workflows/alpha.yml b/.github/workflows/alpha.yml index d95074152..e80d1ce5b 100644 --- a/.github/workflows/alpha.yml +++ b/.github/workflows/alpha.yml @@ -64,7 +64,7 @@ jobs: deploy-alpha-web-app: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - name: Set Flutter version from FVM config file to environment variables uses: kuhnroyal/flutter-fvm-config-action@6ffa30473b346f7d7c63cf9e03e6a886f940a72b @@ -104,7 +104,7 @@ jobs: deploy-alpha-android-app: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - name: Set Flutter version from FVM config file to environment variables uses: kuhnroyal/flutter-fvm-config-action@6ffa30473b346f7d7c63cf9e03e6a886f940a72b @@ -209,7 +209,7 @@ jobs: runs-on: macos-13 timeout-minutes: 120 steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - name: Install Codemagic CLI Tools run: pip3 install codemagic-cli-tools==0.47.0 @@ -276,7 +276,7 @@ jobs: runs-on: macos-13 timeout-minutes: 60 steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - name: Install Codemagic CLI Tools run: pip3 install codemagic-cli-tools==0.47.0 diff --git a/.github/workflows/beta.yml b/.github/workflows/beta.yml index 43fc74dd7..efbd68205 100644 --- a/.github/workflows/beta.yml +++ b/.github/workflows/beta.yml @@ -66,7 +66,7 @@ jobs: runs-on: macos-13 timeout-minutes: 120 steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - name: Install Codemagic CLI Tools run: pip3 install codemagic-cli-tools==0.47.0 @@ -116,7 +116,7 @@ jobs: if: github.event.inputs.deploy-web-app == 'true' runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - name: Set Flutter version from FVM config file to environment variables uses: kuhnroyal/flutter-fvm-config-action@6ffa30473b346f7d7c63cf9e03e6a886f940a72b @@ -160,7 +160,7 @@ jobs: runs-on: ubuntu-22.04 timeout-minutes: 120 steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - name: Install Codemagic CLI Tools run: pip3 install codemagic-cli-tools==0.47.0 @@ -227,7 +227,7 @@ jobs: runs-on: macos-13 timeout-minutes: 60 steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - name: Install Codemagic CLI Tools run: pip3 install codemagic-cli-tools==0.47.0 diff --git a/.github/workflows/cli_ci.yml b/.github/workflows/cli_ci.yml index f5f244f8e..daf14ef3a 100644 --- a/.github/workflows/cli_ci.yml +++ b/.github/workflows/cli_ci.yml @@ -50,7 +50,7 @@ jobs: outputs: changesFound: ${{ steps.filter.outputs.changesFound }} steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - uses: AurorNZ/paths-filter@7c547bdd24124b0d69e07c96b62fd7fec5ced19a id: filter with: @@ -81,7 +81,7 @@ jobs: # In this case the analyze pipeline would fail, thus we won't run it. if: ${{ github.event.pull_request.draft == false && needs.changes.outputs.changesFound == 'true' }} steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - name: Set Flutter version from FVM config file to environment variables uses: kuhnroyal/flutter-fvm-config-action@6ffa30473b346f7d7c63cf9e03e6a886f940a72b @@ -132,7 +132,7 @@ jobs: runs-on: ubuntu-22.04 if: ${{ needs.changes.outputs.changesFound == 'true' }} steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - name: Set Flutter version from FVM config file to environment variables uses: kuhnroyal/flutter-fvm-config-action@6ffa30473b346f7d7c63cf9e03e6a886f940a72b diff --git a/.github/workflows/integration_tests_app_ci.yml b/.github/workflows/integration_tests_app_ci.yml index 3a7e79d79..da6dc3d22 100644 --- a/.github/workflows/integration_tests_app_ci.yml +++ b/.github/workflows/integration_tests_app_ci.yml @@ -43,7 +43,7 @@ jobs: outputs: changesFound: ${{ steps.filter.outputs.changesFound }} steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - uses: AurorNZ/paths-filter@7c547bdd24124b0d69e07c96b62fd7fec5ced19a id: filter with: @@ -82,7 +82,7 @@ jobs: working-directory: app timeout-minutes: 90 steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # Java is needed for building the APK, see # https://github.com/marketplace/actions/flutter-action. @@ -178,7 +178,7 @@ jobs: if: ${{ needs.changes.outputs.changesFound == 'true' }} timeout-minutes: 60 steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - name: Set Flutter version from FVM config file to environment variables uses: kuhnroyal/flutter-fvm-config-action@6ffa30473b346f7d7c63cf9e03e6a886f940a72b @@ -238,7 +238,7 @@ jobs: if: ${{ needs.changes.outputs.changesFound == 'true' }} timeout-minutes: 30 steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - name: Set Flutter version from FVM config file to environment variables uses: kuhnroyal/flutter-fvm-config-action@6ffa30473b346f7d7c63cf9e03e6a886f940a72b @@ -291,7 +291,7 @@ jobs: run: working-directory: app steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - name: Install Codemagic CLI Tools run: pip3 install codemagic-cli-tools==0.47.0 diff --git a/.github/workflows/licence.yml b/.github/workflows/licence.yml index 12e60334d..75dcfa896 100644 --- a/.github/workflows/licence.yml +++ b/.github/workflows/licence.yml @@ -29,7 +29,7 @@ jobs: check-files-licence-headers: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - uses: actions/setup-go@bfd2fb341f32be7281829126376a12a780ca79fc with: go-version: "^1.13.1" @@ -39,7 +39,7 @@ jobs: check-dependency-licenses: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - name: Set Flutter version from FVM config file to environment variables uses: kuhnroyal/flutter-fvm-config-action@6ffa30473b346f7d7c63cf9e03e6a886f940a72b diff --git a/.github/workflows/safe_app_ci.yml b/.github/workflows/safe_app_ci.yml index 367055178..546c0f129 100644 --- a/.github/workflows/safe_app_ci.yml +++ b/.github/workflows/safe_app_ci.yml @@ -64,7 +64,7 @@ jobs: outputs: changesFound: ${{ steps.filter.outputs.changesFound }} steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - uses: AurorNZ/paths-filter@7c547bdd24124b0d69e07c96b62fd7fec5ced19a id: filter with: @@ -98,7 +98,7 @@ jobs: # In this case the analyze pipeline would fail, thus we won't run it. if: ${{ github.event.pull_request.draft == false && needs.changes.outputs.changesFound == 'true' }} steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - name: Set Flutter version from FVM config file to environment variables uses: kuhnroyal/flutter-fvm-config-action@6ffa30473b346f7d7c63cf9e03e6a886f940a72b @@ -147,7 +147,7 @@ jobs: if: ${{ needs.changes.outputs.changesFound == 'true' }} runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - name: Set Flutter version from FVM config file to environment variables uses: kuhnroyal/flutter-fvm-config-action@6ffa30473b346f7d7c63cf9e03e6a886f940a72b @@ -185,7 +185,7 @@ jobs: if: ${{ needs.changes.outputs.changesFound == 'true' }} runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - name: Set Flutter version from FVM config file to environment variables uses: kuhnroyal/flutter-fvm-config-action@6ffa30473b346f7d7c63cf9e03e6a886f940a72b diff --git a/.github/workflows/stable.yml b/.github/workflows/stable.yml index d51b3963d..75bd7355b 100644 --- a/.github/workflows/stable.yml +++ b/.github/workflows/stable.yml @@ -66,7 +66,7 @@ jobs: runs-on: macos-13 timeout-minutes: 120 steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - name: Install Codemagic CLI Tools run: pip3 install codemagic-cli-tools==0.47.0 @@ -117,7 +117,7 @@ jobs: if: github.event.inputs.deploy-web-app == 'true' runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - name: Set Flutter version from FVM config file to environment variables uses: kuhnroyal/flutter-fvm-config-action@6ffa30473b346f7d7c63cf9e03e6a886f940a72b @@ -162,7 +162,7 @@ jobs: runs-on: ubuntu-22.04 timeout-minutes: 120 steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - name: Install Codemagic CLI Tools run: pip3 install codemagic-cli-tools==0.47.0 @@ -229,7 +229,7 @@ jobs: runs-on: macos-13 timeout-minutes: 60 steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - name: Install Codemagic CLI Tools run: pip3 install codemagic-cli-tools==0.47.0 diff --git a/.github/workflows/unsafe_app_ci.yml b/.github/workflows/unsafe_app_ci.yml index 59cd93847..3f3c9f5cb 100644 --- a/.github/workflows/unsafe_app_ci.yml +++ b/.github/workflows/unsafe_app_ci.yml @@ -78,7 +78,7 @@ jobs: outputs: changesFound: ${{ steps.filter.outputs.changesFound }} steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 with: # Because we are using the "pull_request_target" event, we need to # checkout the PR head commit instead of the merge commit. @@ -137,7 +137,7 @@ jobs: - name: Ensure PR has "safe to test" label, if PR is from a fork uses: SharezoneApp/verify-safe-to-test-label@c1059d43fc918756660a700ca6d08e445ff314a2 - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 with: # Because we are using the "pull_request_target" event, we need to # checkout the PR head commit instead of the merge commit.