Skip to content

Commit

Permalink
ci: Bump some action versions
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
kyleam committed Dec 10, 2023
1 parent a8288ef commit 8a5a5fe
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8a5a5fe

Please sign in to comment.