Skip to content

Commit

Permalink
Update versions of actions
Browse files Browse the repository at this point in the history
From a closed PR by @jxdv
  • Loading branch information
mrexodia authored Feb 2, 2024
1 parent 5f5e4b6 commit 18a64d7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
PYTHONUNBUFFERED: '1'
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Python environment
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.9'
architecture: 'x64'
Expand All @@ -30,7 +30,7 @@ jobs:
uses: microsoft/setup-msbuild@v1.3.1

- name: Cache build
uses: actions/cache@v3
uses: actions/cache@v4
id: cache-build
with:
path: 'tests/DumpulatorTests/bin'
Expand All @@ -43,7 +43,7 @@ jobs:
msbuild /p:Configuration=Release /p:Platform=x64 tests\DumpulatorTests\DumpulatorTests.sln
- name: Cache dumps
uses: actions/cache@v3
uses: actions/cache@v4
id: cache-dumps
with:
path: 'tests/*.dmp'
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
uses: actions/checkout@v3

- name: Python environment
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.9'
architecture: 'x64'
Expand All @@ -109,4 +109,4 @@ jobs:
with:
generate_release_notes: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 18a64d7

Please sign in to comment.