We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54af351 commit bb3d823Copy full SHA for bb3d823
.github/workflows/tests.yml
@@ -32,10 +32,11 @@ jobs:
32
- name: Generate Hashseed
33
id: generate
34
run: |
35
- python -c "from random import randint;
+ python -c "import os
36
+ from random import randint
37
hashseed = randint(0, 4294967295)
38
print(f'{hashseed=}')
- print(f'::set-output name=hashseed::{hashseed}')"
39
+ open(os.environ['GITHUB_OUTPUT'], 'a').write(f'hashseed={hashseed}')"
40
41
# Tests job
42
tests:
@@ -53,7 +54,7 @@ jobs:
53
54
steps:
55
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
56
- name: Check out code
- uses: actions/checkout@v2
57
+ uses: actions/checkout@main
58
59
- name: Set up Python ${{ matrix.python-version }}
60
uses: actions/setup-python@main
0 commit comments