aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorDirk Stolle <[email protected]>2023-12-28 02:44:32 +0100
committerHenrik Gaßmann <[email protected]>2023-12-28 10:46:51 +0100
commit5306464d031f70676194497a2009af1416be41df (patch)
tree6f07d31ea859fa8b4b1d97aedde0dc60d761491d /.github
parentc0ea395cf91d242f078c23d5f8d87eb9dd5f7b78 (diff)
update actions/checkout in GitHub Actions to v4
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml16
-rw-r--r--.github/workflows/tag.yml2
2 files changed, 9 insertions, 9 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 6bfbbea..83accaa 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -38,7 +38,7 @@ jobs:
]
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: ${{ format('{0}-{1}', matrix.channel, matrix.target.toolchain) }}
@@ -156,7 +156,7 @@ jobs:
]
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: ${{ format('{0}-{1}', matrix.channel, matrix.target.toolchain) }}
@@ -186,7 +186,7 @@ jobs:
- s390x-unknown-linux-gnu
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
@@ -216,7 +216,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
# Test the intrinsics-based implementations.
- run: make -f Makefile.testing test
working-directory: ./c
@@ -268,7 +268,7 @@ jobs:
strategy:
fail-fast: false
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
@@ -284,7 +284,7 @@ jobs:
name: build with the Tiny C Compiler
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- name: install TCC
run: sudo apt-get install -y tcc
- name: compile
@@ -301,7 +301,7 @@ jobs:
name: "compile and test with GCC 5.4"
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- uses: addnab/docker-run-action@v3
with:
image: gcc:5.4
@@ -329,7 +329,7 @@ jobs:
- os: macOS-latest
compiler: msvc
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- name: CMake generation
run: cmake -S c -B c/build -DCMAKE_INSTALL_PREFIX=${{github.workspace}}/target
- name: CMake build / install
diff --git a/.github/workflows/tag.yml b/.github/workflows/tag.yml
index 3f7e886..867c421 100644
--- a/.github/workflows/tag.yml
+++ b/.github/workflows/tag.yml
@@ -23,7 +23,7 @@ jobs:
]
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: "3.x"