GH Actions: Update versions of actions used

This commit is contained in:
Geod24 2022-10-14 16:47:47 +02:00 committed by Mathias LANG
parent dbf86dffbb
commit 001134e8da
2 changed files with 6 additions and 6 deletions

View file

@ -30,4 +30,4 @@ jobs:
git config --global diff.wsErrorHighlight "all" git config --global diff.wsErrorHighlight "all"
- uses: actions/setup-python@v3.0.0 - uses: actions/setup-python@v3.0.0
- uses: pre-commit/action@v2.0.3 - uses: pre-commit/action@v3.0.0

View file

@ -164,12 +164,12 @@ jobs:
# Checking out up DMD, druntime, Phobos # # Checking out up DMD, druntime, Phobos #
######################################### #########################################
- name: Checkout DMD - name: Checkout DMD
uses: actions/checkout@v2 uses: actions/checkout@v3
with: with:
path: dmd path: dmd
persist-credentials: false persist-credentials: false
- name: Checkout Phobos - name: Checkout Phobos
uses: actions/checkout@v2 uses: actions/checkout@v3
with: with:
path: phobos path: phobos
repository: dlang/phobos repository: dlang/phobos
@ -183,7 +183,7 @@ jobs:
- name: '[Posix] Load cached clang' - name: '[Posix] Load cached clang'
id: cache-clang id: cache-clang
if: matrix.compiler == 'clang' && runner.os != 'Windows' if: matrix.compiler == 'clang' && runner.os != 'Windows'
uses: actions/cache@v1 uses: actions/cache@v3
with: with:
path: ${{ github.workspace }}/clang+llvm-${{ matrix.cxx-version }}-${{ matrix.arch }}/ path: ${{ github.workspace }}/clang+llvm-${{ matrix.cxx-version }}-${{ matrix.arch }}/
key: ${{ matrix.cxx-version }}-${{ matrix.arch }}-2022-09-25-2121 key: ${{ matrix.cxx-version }}-${{ matrix.arch }}-2022-09-25-2121
@ -279,7 +279,7 @@ jobs:
- name: '[Windows] Restore dmc from cache' - name: '[Windows] Restore dmc from cache'
id: cache-dmc id: cache-dmc
if: runner.os == 'Windows' if: runner.os == 'Windows'
uses: actions/cache@v1 uses: actions/cache@v3
with: with:
path: ${{ github.workspace }}\tools\ path: ${{ github.workspace }}\tools\
key: ${{ matrix.os }}-dmc857 key: ${{ matrix.os }}-dmc857
@ -390,7 +390,7 @@ jobs:
######################################## ########################################
- name: Store artifacts - name: Store artifacts
if: ${{ matrix.storeArtifacts }} if: ${{ matrix.storeArtifacts }}
uses: actions/upload-artifact@v2 uses: actions/upload-artifact@v3
with: with:
name: dmd-${{ matrix.os }} name: dmd-${{ matrix.os }}
path: install path: install