Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated remaining pipeline action versions from v3 to v4 #187

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions .github/workflows/cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
timeout-minutes: 60
steps:
- name: Cache wxWidgets
uses: actions/cache@v3
uses: actions/cache@v4
id: wxwidgets-cache
with:
path: ${{ runner.temp }}/wxWidgets-${{ env.WX_WIDGETS_VERSION }}
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
timeout-minutes: 60
steps:
- name: Cache wxWidgets
uses: actions/cache@v3
uses: actions/cache@v4
id: wxwidgets-cache
with:
path: ${{ runner.temp }}/wxWidgets-${{ env.WX_WIDGETS_VERSION }}
Expand All @@ -86,7 +86,7 @@ jobs:
timeout-minutes: 60
steps:
- name: Cache wxWidgets
uses: actions/cache@v3
uses: actions/cache@v4
id: wxwidgets-cache
with:
path: ${{ runner.temp }}\wxWidgets-${{ env.WX_WIDGETS_VERSION }}
Expand Down Expand Up @@ -145,7 +145,7 @@ jobs:
texlive
zip
- name: wxWidgets Cache
uses: actions/cache@v3
uses: actions/cache@v4
id: wxwidgets-cache
with:
path: ${{ runner.temp }}/wxWidgets-${{ env.WX_WIDGETS_VERSION }}
Expand All @@ -158,7 +158,7 @@ jobs:
sudo make install
sudo cp ../wxwin.m4 /usr/share/aclocal/
- name: Checkout Repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Build Logo
Expand Down Expand Up @@ -197,7 +197,7 @@ jobs:
autoconf-archive
automake
- name: wxWidgets Cache
uses: actions/cache@v3
uses: actions/cache@v4
id: wxwidgets-cache
with:
path: ${{ runner.temp }}/wxWidgets-${{ env.WX_WIDGETS_VERSION }}
Expand All @@ -210,7 +210,7 @@ jobs:
sudo make install
sudo cp ../wxwin.m4 /opt/homebrew/share/aclocal/
- name: Checkout Repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Download PDF manual
Expand Down Expand Up @@ -251,13 +251,13 @@ jobs:
mingw-w64-i686-toolchain
unzip
- name: wxWidgets Cache
uses: actions/cache@v3
uses: actions/cache@v4
id: wxwidgets-cache
with:
path: ${{ runner.temp }}\wxWidgets-${{ env.WX_WIDGETS_VERSION }}
key: ${{ runner.os }}-wxWidgets-${{ env.WX_WIDGETS_VERSION }}
- name: Checkout Repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Prepare Repository
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
timeout-minutes: 5
steps:
- name: Checkout Repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Conditionally Add wxWidgets Unofficial Repo
if: contains(matrix.wx_version, 'unofficial')
run: |
Expand Down