We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99601e3 commit 0f4e1b8Copy full SHA for 0f4e1b8
1 file changed
.github/workflows/programming_team_code_ci.yml
@@ -9,15 +9,18 @@ jobs:
9
library_checker_aizu:
10
runs-on: ubuntu-latest
11
steps:
12
- - uses: actions/checkout@v1
+ - uses: actions/checkout@v4
13
- name: Set up Python
14
- uses: actions/setup-python@v1
+ uses: actions/setup-python@v5
15
+ with:
16
+ python-version: '3.12'
17
- name: Install dependencies
- run: pip3 install online-judge-verify-helper
18
+ run: pip3 install -U online-judge-verify-helper
19
- name: Set up Rust (nightly)
20
run: |
21
rustup set profile minimal
- rustup install stable
22
+ rustup install nightly
23
+ rustup override set nightly
24
- name: Set up git submodules
25
26
git submodule init
0 commit comments