From da688a84f423363d760877ed1aaf00b32c30c019 Mon Sep 17 00:00:00 2001 From: Ethan Zimbelman Date: Fri, 26 May 2023 14:55:49 -0700 Subject: [PATCH 1/2] bump actions/checkout to @v3 --- .github/workflows/ci-build.yml | 2 +- .github/workflows/pytype.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index acbd04850..acc21aa95 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -18,7 +18,7 @@ jobs: PYTHON_SLACK_SDK_MOCK_SERVER_MODE: 'threading' CI_LARGE_SOCKET_MODE_PAYLOAD_TESTING_DISABLED: '1' steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v2 with: diff --git a/.github/workflows/pytype.yml b/.github/workflows/pytype.yml index 96eb6b2c5..609395aca 100644 --- a/.github/workflows/pytype.yml +++ b/.github/workflows/pytype.yml @@ -13,7 +13,7 @@ jobs: matrix: python-version: ['3.9'] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v2 with: From 09bae2cc87d6eb6630a2ccae164ee817c4e36577 Mon Sep 17 00:00:00 2001 From: Ethan Zimbelman Date: Fri, 26 May 2023 14:56:13 -0700 Subject: [PATCH 2/2] bump actions/setup-python to @v4 --- .github/workflows/ci-build.yml | 2 +- .github/workflows/pytype.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index acc21aa95..1b42cc4fa 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -20,7 +20,7 @@ jobs: steps: - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} - name: Install dependencies diff --git a/.github/workflows/pytype.yml b/.github/workflows/pytype.yml index 609395aca..ddd36c13e 100644 --- a/.github/workflows/pytype.yml +++ b/.github/workflows/pytype.yml @@ -15,7 +15,7 @@ jobs: steps: - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} - name: Install dependencies