From 4564d739f765e7c09f2ab4bf6bd179e50bb832c3 Mon Sep 17 00:00:00 2001 From: Danny McCormick Date: Tue, 23 Jul 2019 15:45:57 -0400 Subject: [PATCH] Update README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 065e5e4..924392e 100644 --- a/README.md +++ b/README.md @@ -12,8 +12,8 @@ See [action.yml](action.yml) Basic: ```yaml actions: -- uses: actions/checkout@latest -- uses: actions/setup-python@latest +- uses: actions/checkout@master +- uses: actions/setup-python@master with: version: 3.x // Version range or exact version of a Python version to use, using semvers version range syntax. architecture: x64 // (x64 or x86) @@ -29,9 +29,9 @@ jobs: python: [ 2.x, 3.x, pypy3 ] name: Python ${{ matrix.python }} sample actions: - - uses: actions/checkout@latest + - uses: actions/checkout@master - name: Setup python - uses: actions/setup-python@latest + uses: actions/setup-python@master with: version: ${{ matrix.python }} architecture: x64