diff options
author | Ewout ter Hoeven <[email protected]> | 2020-11-28 06:40:12 +0100 |
---|---|---|
committer | Scott <[email protected]> | 2020-12-12 17:37:54 +0000 |
commit | 1907e58165b4fda614c785ac275bfc392ae271e6 (patch) | |
tree | 61b458733560af4f17f27a195f4801fbee43c02c /.github | |
parent | 13df899d5c5ebcb3f857f5651cab4a89a07de8dc (diff) |
CI: Use stable version of actions/checkout
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/linux.yml | 2 | ||||
-rw-r--r-- | .github/workflows/mac.yml | 2 | ||||
-rw-r--r-- | .github/workflows/windows.yml | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 987508cda..c4aac783e 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-20.04 if: github.repository == 'HandBrake/HandBrake' steps: - - uses: actions/checkout@master + - uses: actions/checkout@v2 - uses: actions/setup-python@v2 - name: Setup Environment diff --git a/.github/workflows/mac.yml b/.github/workflows/mac.yml index bc8a5fac7..36f35c7fc 100644 --- a/.github/workflows/mac.yml +++ b/.github/workflows/mac.yml @@ -20,7 +20,7 @@ jobs: runs-on: macos-11.0 if: github.repository == 'HandBrake/HandBrake' steps: - - uses: actions/checkout@master + - uses: actions/checkout@v2 - name: Toolchain Cache id: mac-toolchain diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 6f004f3c7..bac6d0e37 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -7,7 +7,7 @@ jobs: name: CLI / LibHB runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@master + - uses: actions/checkout@v2 - name: Environment Setup run: | @@ -63,7 +63,7 @@ jobs: SigningCertificate: ${{ secrets.HandBrakeTeam_SignFile }} steps: - - uses: actions/checkout@master + - uses: actions/checkout@v2 - name: NuGet Restore run: | |