From 8a5a5fe016a43bbc5aeed7589b295804788eec3e Mon Sep 17 00:00:00 2001 From: Kyle Meyer Date: Sun, 10 Dec 2023 15:01:53 -0500 Subject: [PATCH] ci: Bump some action versions Use the latest action versions to try to resolve this warning: The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions/setup-python@v1. --- .github/workflows/test.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c49d257..7219915 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -23,22 +23,22 @@ jobs: https://git.savannah.gnu.org/git/emacs/elpa.git seq echo SEQ_DIR=$PWD/seq >>$GITHUB_ENV - name: Check out compat - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: repository: emacs-compat/compat path: compat - name: Check out transient - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: repository: magit/transient path: transient - name: Check out snakemake-mode - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: repository: kyleam/snakemake-mode path: snakemake-mode - name: Set up Python - uses: actions/setup-python@v1 + uses: actions/setup-python@v4 with: python-version: 3.12 - name: Install Snakemake