Skip to content

Commit

Permalink
Merge branch 'master' into far2l-263
Browse files Browse the repository at this point in the history
  • Loading branch information
hemnstill committed Aug 8, 2024
2 parents 1fcb553 + 6d02602 commit 31cb0c6
Show file tree
Hide file tree
Showing 13 changed files with 26 additions and 26 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
container: python:3.11.4-alpine3.17
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: version tests
run: |
python -m unittest discover --start-directory .tools --pattern=*_tests.py
Expand All @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
container: node:18.16.0-alpine3.18
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: |
corepack enable && corepack prepare [email protected] --activate
cd .tools/checks
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-alpine.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ jobs:
runs-on: ubuntu-latest
container: alpine:${{ inputs.version }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: build ${{ inputs.workflow }}-alpine-${{ inputs.toolset }}
run: |
apk add --no-cache bash
./${{ inputs.workflow }}/build_${{ inputs.toolset }}.sh
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: build-${{ inputs.toolset }}
path: ./${{ inputs.workflow }}/release/build-${{ inputs.toolset }}.tar.gz
4 changes: 2 additions & 2 deletions .github/workflows/build-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ jobs:
runs-on: ubuntu-latest
container: ubuntu:${{ inputs.version }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: build ${{ inputs.workflow }}-ubuntu-${{ inputs.toolset }}
run: |
apt update
apt install -y docker.io
./${{ inputs.workflow }}/build_${{ inputs.toolset }}.sh
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: build-${{ inputs.toolset }}
path: ./${{ inputs.workflow }}/release/build-${{ inputs.toolset }}.tar.gz
4 changes: 2 additions & 2 deletions .github/workflows/build-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ jobs:
runs-on: ubuntu-latest
container: ubuntu:${{ inputs.version }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: build ${{ inputs.workflow }}-ubuntu-${{ inputs.toolset }}
run: |
./${{ inputs.workflow }}/build_${{ inputs.toolset }}.sh
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: build-${{ inputs.toolset }}
path: ./${{ inputs.workflow }}/release/build-${{ inputs.toolset }}.tar.gz
4 changes: 2 additions & 2 deletions .github/workflows/build-windows-msbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
build-windows:
runs-on: windows-2019
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Add msbuild to PATH
uses: microsoft/[email protected]
Expand All @@ -27,7 +27,7 @@ jobs:
run: |
.tools\busybox.exe sh ${{ inputs.workflow }}\build_${{ inputs.toolset }}.sh
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: build-${{ inputs.toolset }}
path: ./${{ inputs.workflow }}/release/build-${{ inputs.toolset }}.tar.gz
4 changes: 2 additions & 2 deletions .github/workflows/build-windows-msys2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: windows-2019

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: msys2/setup-msys2@v2
with:
Expand All @@ -30,7 +30,7 @@ jobs:
shell:
msys2 {0}

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: build-${{ inputs.toolset }}
path: ./${{ inputs.workflow }}/release/build-${{ inputs.toolset }}.tar.gz
4 changes: 2 additions & 2 deletions .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ jobs:
run: |
vcpkg install ${{ inputs.vcpkg_install }}
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: build ${{ inputs.workflow }}-windows-${{ inputs.toolset }}
run: |
.tools\busybox.exe sh ${{ inputs.workflow }}\build_${{ inputs.toolset }}.sh
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: build-${{ inputs.toolset }}
path: ./${{ inputs.workflow }}/release/build-${{ inputs.toolset }}.tar.gz
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- run: |
apt update -y
apt install -y libarchive-tools
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
- run: ${{ inputs.prepare_body }}
- uses: ncipollo/release-action@v1
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-alpine.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ jobs:
container: alpine:${{ inputs.version }}

steps:
- uses: actions/checkout@v3
- uses: actions/download-artifact@v3
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: ${{ inputs.artifact }}
path: .
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ jobs:
container: ubuntu:${{ inputs.version }}

steps:
- uses: actions/checkout@v3
- uses: actions/download-artifact@v3
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: ${{ inputs.artifact }}
path: .
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-nanoserver.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ jobs:
test-nanoserver:
runs-on: windows-2022
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: pull windows container ${{ env.IMAGE_NAME }}
shell: cmd
run: |
docker pull ${{ env.IMAGE_NAME }}
docker images ${{ env.IMAGE_NAME }}
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: ${{ inputs.artifact }}
path: .
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ jobs:
container: ubuntu:${{ inputs.version }}

steps:
- uses: actions/checkout@v3
- uses: actions/download-artifact@v3
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: ${{ inputs.artifact }}
path: .
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ jobs:
test-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: actions/download-artifact@v3
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: ${{ inputs.artifact }}
path: .
Expand All @@ -24,7 +24,7 @@ jobs:
cd ./${{ inputs.workflow }}
../.tools/busybox.exe bash ./test_windows.sh
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: test-${{ inputs.artifact }}
path: ./${{ inputs.workflow }}/test-windows.md

0 comments on commit 31cb0c6

Please sign in to comment.