aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorEgor Tensin <egor@tensin.name>2024-01-28 20:11:57 +0100
committerEgor Tensin <egor@tensin.name>2024-01-28 20:11:57 +0100
commit176d29eb30b76b53f8771fbd0deb3cbfcadf5e0b (patch)
treee99ee9e14be275411ee37419e3431299be870ca5
parentMakefile: upgrade default Boost version (diff)
downloadwinapi-utf8-master.tar.gz
winapi-utf8-master.zip
workflows/ci: upgrade actionsHEADmaster
-rw-r--r--.github/workflows/ci.yml14
1 files changed, 7 insertions, 7 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index d5065c0..c2a7746 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -16,7 +16,7 @@ jobs:
if: github.ref == 'refs/heads/master'
steps:
- name: Checkout
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
with:
submodules: recursive
- name: Run clang-format
@@ -45,16 +45,16 @@ jobs:
CONFIGURATION: '${{ matrix.configuration }}'
steps:
- name: Checkout
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
with:
submodules: recursive
- name: Cache Boost
- uses: actions/cache@v3
+ uses: actions/cache@v4
with:
path: './build/boost_*.tar.gz'
key: 'boost_${{ env.BOOST_VERSION }}'
- name: Set up Python
- uses: actions/setup-python@v4
+ uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Set up MinGW
@@ -67,7 +67,7 @@ jobs:
- name: Build
run: make install
- name: Upload binaries
- uses: actions/upload-artifact@v3
+ uses: actions/upload-artifact@v4
with:
name: 'winapi-utf8-${{ matrix.toolset }}-${{ matrix.platform }}-${{ matrix.configuration }}'
path: './build/install/'
@@ -90,11 +90,11 @@ jobs:
# build the project. TODO: research if this is possible without having a
# Doxyfile.
- name: Checkout
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
with:
submodules: recursive
- name: Set up Python
- uses: actions/setup-python@v4
+ uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Set up MinGW