diff options
| author | Alex Gaynor <alex.gaynor@gmail.com> | 2020-10-25 11:57:55 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-10-25 08:57:55 -0700 |
| commit | 8be1d4b1113eabea306dd60ab64e7f00815d6a52 (patch) | |
| tree | a3c40438a0004abb7627245a5b3f78f06f1041ab /.github | |
| parent | 08a97cca715ca0842d6792d0079e351efbb48ec9 (diff) | |
| download | cryptography-8be1d4b1113eabea306dd60ab64e7f00815d6a52.tar.gz | |
Stop using @master for GH actions (#5503)
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/ci.yml | 4 | ||||
| -rw-r--r-- | .github/workflows/wheel-builder.yml | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 717504a61..b55266721 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: - {VERSION: "3.9", TOXENV: "py39", EXTRA_CFLAGS: "-DUSE_OSRANDOM_RNG_FOR_TESTING"} name: "Python ${{ matrix.PYTHON.VERSION }} on macOS" steps: - - uses: actions/checkout@master + - uses: actions/checkout@v2 - name: Setup python uses: actions/setup-python@v2 with: @@ -66,7 +66,7 @@ jobs: - {VERSION: "3.9", TOXENV: "py39", MSVC_VERSION: "2019", CL_FLAGS: "/D USE_OSRANDOM_RNG_FOR_TESTING"} name: "Python ${{ matrix.PYTHON.VERSION }} on ${{ matrix.WINDOWS.WINDOWS }}" steps: - - uses: actions/checkout@master + - uses: actions/checkout@v2 - name: Setup python uses: actions/setup-python@v2 with: diff --git a/.github/workflows/wheel-builder.yml b/.github/workflows/wheel-builder.yml index 7fcbec44c..74012f09b 100644 --- a/.github/workflows/wheel-builder.yml +++ b/.github/workflows/wheel-builder.yml @@ -67,7 +67,7 @@ jobs: BIN_PATH: '/Library/Frameworks/Python.framework/Versions/3.8/bin/python3' name: "${{ matrix.PYTHON.VERSION }} ABI ${{ matrix.PYTHON.ABI_VERSION }} macOS" steps: - - uses: actions/checkout@master + - uses: actions/checkout@v2 - run: | curl "$PYTHON_DOWNLOAD_URL" -o python.pkg sudo installer -pkg python.pkg -target / @@ -122,7 +122,7 @@ jobs: - {VERSION: "3.8", MSVC_VERSION: "2019", "USE_ABI3": "true", "ABI_VERSION": "cp36"} name: "${{ matrix.PYTHON.VERSION }} ${{ matrix.WINDOWS.WINDOWS }} ${{ matrix.PYTHON.ABI_VERSION }}" steps: - - uses: actions/checkout@master + - uses: actions/checkout@v2 - name: Setup python uses: actions/setup-python@v2 with: |
