From 55d2852aaf4556c58bf8cd3d1065b35f2ca86d8e Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Mon, 5 Feb 2024 14:46:48 -0800 Subject: [PATCH] Bump GitHub Actions versions for Node 20 --- .github/workflows/publish.yml | 4 ++-- .github/workflows/test.yml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index eee462f..3eebcf3 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -13,7 +13,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} cache: 'pip' @@ -34,7 +34,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} cache: 'pip' diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 67e69eb..b4a9341 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,13 +11,13 @@ jobs: steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} cache: 'pip' cache-dependency-path: setup.py - name: Cache Playwright browsers - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.cache/ms-playwright/ key: ${{ runner.os }}-browsers @@ -40,7 +40,7 @@ jobs: run: | tests/run_examples.sh - name: Archive examples - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: examples path: examples/*