diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2020-12-07 13:17:16 +0530 |
---|---|---|
committer | Harsh Shandilya <me@msfjarvis.dev> | 2020-12-07 13:45:37 +0530 |
commit | b5b0e177d954513a5026ba82cf242068804ca5c6 (patch) | |
tree | 34731106fd85e97039f2fbf3df1693d7886a99c7 /.github | |
parent | 7cd416216e6195b4ba47ca29a587a48ae8067eaa (diff) |
github: update actions/checkout to v2.3.4
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/deploy_github_releases.yml | 4 | ||||
-rw-r--r-- | .github/workflows/deploy_library_releases.yml | 2 | ||||
-rw-r--r-- | .github/workflows/deploy_snapshot.yml | 2 | ||||
-rw-r--r-- | .github/workflows/draft_new_release.yml | 2 | ||||
-rw-r--r-- | .github/workflows/pull_request.yml | 2 | ||||
-rw-r--r-- | .github/workflows/update_publicsuffix_data.yml | 2 | ||||
-rw-r--r-- | .github/workflows/validate_gradle_wrapper.yml | 2 |
7 files changed, 8 insertions, 8 deletions
diff --git a/.github/workflows/deploy_github_releases.yml b/.github/workflows/deploy_github_releases.yml index d9e51427..c928b7b7 100644 --- a/.github/workflows/deploy_github_releases.yml +++ b/.github/workflows/deploy_github_releases.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@c952173edf28a2bd22e1a4926590c1ac39630461 + uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f - name: Decrypt secrets run: scripts/signing-setup.sh "$ENCRYPT_KEY" @@ -53,7 +53,7 @@ jobs: needs: build steps: - name: Checkout - uses: actions/checkout@c952173edf28a2bd22e1a4926590c1ac39630461 + uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f - name: Get Non-Free Release APK uses: actions/download-artifact@f60857ee283b759efd0a9bf31b1b24a2d9c7e5cd diff --git a/.github/workflows/deploy_library_releases.yml b/.github/workflows/deploy_library_releases.yml index 5736d2a4..a9252a5b 100644 --- a/.github/workflows/deploy_library_releases.yml +++ b/.github/workflows/deploy_library_releases.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@c952173edf28a2bd22e1a4926590c1ac39630461 + uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f - name: Determine publishing task id: task-select diff --git a/.github/workflows/deploy_snapshot.yml b/.github/workflows/deploy_snapshot.yml index f8ad28d4..e83e057b 100644 --- a/.github/workflows/deploy_snapshot.yml +++ b/.github/workflows/deploy_snapshot.yml @@ -10,7 +10,7 @@ jobs: if: "!contains(github.event.head_commit.message, '[ci skip]')" steps: - name: Checkout repository - uses: actions/checkout@c952173edf28a2bd22e1a4926590c1ac39630461 + uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f - name: Decrypt secrets run: scripts/signing-setup.sh "$ENCRYPT_KEY" diff --git a/.github/workflows/draft_new_release.yml b/.github/workflows/draft_new_release.yml index 305d5807..0ed9598b 100644 --- a/.github/workflows/draft_new_release.yml +++ b/.github/workflows/draft_new_release.yml @@ -9,7 +9,7 @@ jobs: name: "Draft a new release" runs-on: ubuntu-latest steps: - - uses: actions/checkout@c952173edf28a2bd22e1a4926590c1ac39630461 + - uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f with: ref: 'release' - name: Extract version from milestone diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 6cc597d8..e3d42aaa 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -30,7 +30,7 @@ jobs: - name: Checkout repository if: ${{ steps.service-changed.outputs.result == 'true' }} - uses: actions/checkout@c952173edf28a2bd22e1a4926590c1ac39630461 + uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f - name: Copy CI gradle.properties if: ${{ steps.service-changed.outputs.result == 'true' }} diff --git a/.github/workflows/update_publicsuffix_data.yml b/.github/workflows/update_publicsuffix_data.yml index 00a26361..32b918b8 100644 --- a/.github/workflows/update_publicsuffix_data.yml +++ b/.github/workflows/update_publicsuffix_data.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@c952173edf28a2bd22e1a4926590c1ac39630461 + uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f - name: Download new publicsuffix data run: curl -L https://github.com/mozilla-mobile/android-components/raw/master/components/lib/publicsuffixlist/src/main/assets/publicsuffixes -o autofill-parser/src/main/assets/publicsuffixes diff --git a/.github/workflows/validate_gradle_wrapper.yml b/.github/workflows/validate_gradle_wrapper.yml index c0e3c89f..8a54d8bd 100644 --- a/.github/workflows/validate_gradle_wrapper.yml +++ b/.github/workflows/validate_gradle_wrapper.yml @@ -12,5 +12,5 @@ jobs: name: "Wrapper validation" runs-on: ubuntu-latest steps: - - uses: actions/checkout@c952173edf28a2bd22e1a4926590c1ac39630461 + - uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f - uses: gradle/wrapper-validation-action@2a9956c214b2b4b63544570479c926e7a121218e |