diff options
author | Kyle Meyer <kyle@kyleam.com> | 2023-12-10 15:08:15 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2023-12-10 15:08:35 -0500 |
commit | 4ad41da69e4b95b38a3d3273874c44caab20cc56 (patch) | |
tree | 69f4d7d795460c74fa26f038a2f340ac9a69d4dd /.github/workflows | |
parent | 75c2a2ee335530d830f54b386fb5a139cb97499a (diff) | |
download | snakemake-mode-4ad41da69e4b95b38a3d3273874c44caab20cc56.tar.gz |
Use the latest action versions 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.
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/test.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3290f39..56ae573 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -25,22 +25,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 |