Skip to content

Commit 0aa09c5

Browse files
committed
Fix deprecated GitHub Actions versions
### Notes - Update actions/checkout from v2 to v4 - Update actions/setup-python from v2 to v4 - Update actions/cache from v2 to v4 (both instances) ### Testing This addresses the workflow failure caused by deprecated action versions. The updated actions are the current stable releases and should resolve the CI pipeline issues. ### Issues * Fixes GitHub Actions deprecation warnings in CI workflow
1 parent cd155d9 commit 0aa09c5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ jobs:
2222
python-version: [3.7]
2323

2424
steps:
25-
- uses: actions/checkout@v2
25+
- uses: actions/checkout@v4
2626

2727
- name: python ${{ matrix.python-version }}
28-
uses: actions/setup-python@v2
28+
uses: actions/setup-python@v4
2929
with:
3030
python-version: ${{ matrix.python-version }}
3131

@@ -34,13 +34,13 @@ jobs:
3434
with:
3535
version: ${{ matrix.emacs_version }}
3636

37-
- uses: actions/cache@v2
37+
- uses: actions/cache@v4
3838
id: cache-cask-packages
3939
with:
4040
path: .cask
4141
key: cache-cask-packages-001
4242

43-
- uses: actions/cache@v2
43+
- uses: actions/cache@v4
4444
id: cache-cask-executable
4545
with:
4646
path: ~/.cask

0 commit comments

Comments
 (0)