From 1d7c85356c5dfa3d6e7f710f24eeb1463f2967dc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Apr 2022 13:31:21 -0500 Subject: [PATCH] CLDR-15539 gh:(deps): Bump actions/checkout from 2 to 3 (#1904) Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [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/v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/ansible-lint.yml | 4 ++-- .github/workflows/build-icu.yml | 10 +++++----- .github/workflows/commit-checker.yml | 4 ++-- .github/workflows/exhaustive.yml | 4 ++-- .github/workflows/gh-pages.yml | 2 +- .github/workflows/js.yml | 2 +- .github/workflows/maven-release.yml | 2 +- .github/workflows/maven.yml | 8 ++++---- .github/workflows/production.yml | 2 +- 9 files changed, 19 insertions(+), 19 deletions(-) diff --git a/.github/workflows/ansible-lint.yml b/.github/workflows/ansible-lint.yml index 222f41f6b1f..520a5b69738 100644 --- a/.github/workflows/ansible-lint.yml +++ b/.github/workflows/ansible-lint.yml @@ -14,7 +14,7 @@ jobs: lint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: lfs: false # not needed for this job, as we don’t currently do a Java build - name: Lint Ansible Playbook @@ -27,7 +27,7 @@ jobs: testprovision: runs-on: macos-10.15 # see https://github.com/actions/virtual-environments/issues/4060 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: lfs: false # not needed for this job, as we don’t currently do a Java build - name: Install Vagrant and Ansible diff --git a/.github/workflows/build-icu.yml b/.github/workflows/build-icu.yml index fe212df2052..53876206e52 100644 --- a/.github/workflows/build-icu.yml +++ b/.github/workflows/build-icu.yml @@ -27,7 +27,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Clone CLDR - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: ref: ${{ github.event.inputs.cldr-ref }} lfs: false @@ -111,14 +111,14 @@ jobs: run: mkdir -p cldr cldr-prod && cd cldr-prod && unzip ../cldr-prod.zip # Don't actually need CLDR # - name: Clone CLDR - # uses: actions/checkout@v2 + # uses: actions/checkout@v3 # with: # ref: ${{ github.event.inputs.cldr-ref }} # lfs: false # repository: ${{ github.event.inputs.cldr-repo }} # path: cldr - name: Clone ICU - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: repository: ${{ github.event.inputs.icu-repo }} ref: ${{ github.event.inputs.icu-ref }} @@ -168,7 +168,7 @@ jobs: needs: genicudata steps: - name: Clone ICU - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: repository: ${{ github.event.inputs.icu-repo }} ref: ${{ github.event.inputs.icu-ref }} @@ -212,7 +212,7 @@ jobs: needs: genicudata steps: - name: Clone ICU - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: repository: ${{ github.event.inputs.icu-repo }} ref: ${{ github.event.inputs.icu-ref }} diff --git a/.github/workflows/commit-checker.yml b/.github/workflows/commit-checker.yml index 7ddff8b555a..b2ae69c4653 100644 --- a/.github/workflows/commit-checker.yml +++ b/.github/workflows/commit-checker.yml @@ -28,14 +28,14 @@ jobs: runs-on: ubuntu-latest steps: - name: clone CLDR - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: ref: ${{ github.event.inputs.end-ref }} lfs: false # not needed here path: cldr fetch-depth: 0 # expensive, but we need history for the checker - name: clone ICU for tools - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: repository: ${{ github.event.inputs.tool-repository }} ref: ${{ github.event.inputs.tool-ref }} diff --git a/.github/workflows/exhaustive.yml b/.github/workflows/exhaustive.yml index aaa2e347d26..3c500ff69dd 100644 --- a/.github/workflows/exhaustive.yml +++ b/.github/workflows/exhaustive.yml @@ -17,13 +17,13 @@ jobs: runs-on: ubuntu-latest steps: - name: Clone Repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: lfs: false fetch-depth: 0 # Needed for cldr-archive if: github.event.inputs.git-ref == '' - name: Clone Repository (manual ref) - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: lfs: false fetch-depth: 0 # Needed for cldr-archive diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index 5c11f943201..da28f3b85fe 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -14,7 +14,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: lfs: false - name: Cache local npm repository diff --git a/.github/workflows/js.yml b/.github/workflows/js.yml index 0a06e69b263..cd9ca9d6a9e 100644 --- a/.github/workflows/js.yml +++ b/.github/workflows/js.yml @@ -14,7 +14,7 @@ jobs: fetest: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: lfs: false # not needed for this job, as we don’t currently do a Java build - name: Cache npm repository diff --git a/.github/workflows/maven-release.yml b/.github/workflows/maven-release.yml index e6b9506f433..09dd3511328 100644 --- a/.github/workflows/maven-release.yml +++ b/.github/workflows/maven-release.yml @@ -7,7 +7,7 @@ jobs: mvn-deploy: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: lfs: false - name: Set up JDK diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 8601de19850..f4bdb2fe7f3 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -14,12 +14,12 @@ jobs: runs-on: ubuntu-latest steps: - name: Clone Repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: lfs: false if: github.event.inputs.git-ref == '' - name: Clone Repository (manual ref) - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: lfs: false ref: ${{ github.event.inputs.git-ref }} @@ -94,12 +94,12 @@ jobs: runs-on: ubuntu-latest steps: - name: Clone Repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: lfs: false if: github.event.inputs.git-ref == '' - name: Clone Repository (manual ref) - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: lfs: false ref: ${{ github.event.inputs.git-ref }} diff --git a/.github/workflows/production.yml b/.github/workflows/production.yml index fa530bcf7c9..3e49de8b573 100644 --- a/.github/workflows/production.yml +++ b/.github/workflows/production.yml @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Clone Repository (Custom Ref) - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: ref: ${{ github.event.inputs.git-ref }} lfs: false