Skip to content

Commit

Permalink
ci: upgrade action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
alonbl committed Feb 9, 2024
1 parent e041e06 commit ff74917
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
steps:
- name: cache
id: cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ env.openssl_name }}
key: ${{ env.openssl_name }}-${{ env.caches_version }}
Expand All @@ -88,7 +88,7 @@ jobs:
${{ matrix.dependencies }}
- name: checkout
if: steps.cache.outputs.cache-hit != 'true'
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: openssl/openssl
ref: ${{ matrix.branch }}
Expand Down Expand Up @@ -126,7 +126,7 @@ jobs:
pkg-config \
softhsm
- name: mycms-checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: mycms
- name: mycms-prepare
Expand Down Expand Up @@ -240,7 +240,7 @@ jobs:
env | grep '^MYCMS_' >> "${GITHUB_ENV}"
env | grep '.*_CFLAGS\|.*_LIBS' >> "${GITHUB_ENV}" || true
- name: ${{ env.crypto_name }} cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ env.crypto_name }}
key: ${{ env.crypto_name }}-${{ env.caches_version }}
Expand All @@ -253,7 +253,7 @@ jobs:
pkg-config \
${MYCMS_DEPS}
- name: mycms-dist-download
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: mycms-dist
path: dist
Expand Down Expand Up @@ -322,12 +322,12 @@ jobs:
shell: cmd
run: echo C:\Program Files\Git\usr\bin>>"%GITHUB_PATH%"
- name: ${{ env.crypto_name }} cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ env.crypto_name }}
key: ${{ env.crypto_name }}-${{ env.caches_version }}
- name: wsl-setup
uses: Vampire/setup-wsl@v2
uses: Vampire/setup-wsl@v3
with:
distribution: Ubuntu-20.04
additional-packages:
Expand All @@ -340,7 +340,7 @@ jobs:
enabled=true
appendWindowsPath=false
- name: mycms-dist-download
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: mycms-dist
path: dist
Expand Down Expand Up @@ -405,7 +405,7 @@ jobs:
devscripts \
equivs
- name: mycms-dist-download
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: mycms-dist
path: dist
Expand Down Expand Up @@ -457,12 +457,12 @@ jobs:
sudo apt install \
nsis
- name: mycms-misc-download
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: mycms-binaries-windows-${{ matrix.crypto }}
path: mycms-binaries-windows-${{ matrix.crypto }}
- name: mycms-misc-download
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: mycms-misc
path: misc
Expand Down Expand Up @@ -499,7 +499,7 @@ jobs:

steps:
- name: mycms-deb-repo-download
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: mycms-deb-repo
path: mycms-repo
Expand Down Expand Up @@ -531,7 +531,7 @@ jobs:

steps:
- name: mycms-misc-download
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: mycms-installers-windows-${{ matrix.crypto }}
- name: test
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codespell.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

steps:
- name: mycms-checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- uses: codespell-project/actions-codespell@master
with:
ignore_words_file: ./.codespell-ignore-words

0 comments on commit ff74917

Please sign in to comment.