Index: .github/workflows/amiga-gcc.yml ================================================================== --- .github/workflows/amiga-gcc.yml +++ .github/workflows/amiga-gcc.yml @@ -3,14 +3,14 @@ jobs: build: runs-on: ubuntu-latest container: amigadev/crosstools:m68k-amigaos steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: autogen.sh run: ./autogen.sh - name: configure run: ./configure --host=m68k-amigaos - name: make run: make -j$(nproc) - name: make install run: make install Index: .github/workflows/dragonflybsd.yml ================================================================== --- .github/workflows/dragonflybsd.yml +++ .github/workflows/dragonflybsd.yml @@ -8,11 +8,11 @@ configure_flags: - - --disable-shared - --with-tls=gnutls steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: vmactions/dragonflybsd-vm@v0 with: usesh: true copyback: false prepare: | Index: .github/workflows/freebsd.yml ================================================================== --- .github/workflows/freebsd.yml +++ .github/workflows/freebsd.yml @@ -8,11 +8,11 @@ configure_flags: - - --disable-shared - --with-tls=gnutls steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: vmactions/freebsd-vm@v0 with: usesh: true copyback: false prepare: | Index: .github/workflows/ios.yml ================================================================== --- .github/workflows/ios.yml +++ .github/workflows/ios.yml @@ -12,11 +12,11 @@ - - --disable-shared steps: - name: Install dependencies run: brew install autoconf automake - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: autogen.sh run: ./autogen.sh - name: configure run: | export IPHONEOS_DEPLOYMENT_TARGET="9.0" Index: .github/workflows/macos-11.yml ================================================================== --- .github/workflows/macos-11.yml +++ .github/workflows/macos-11.yml @@ -16,11 +16,11 @@ - --disable-files - --disable-shared steps: - name: Install dependencies run: brew install autoconf automake - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: autogen.sh run: ./autogen.sh - name: configure run: ./configure ${{ matrix.configure_flags }} - name: make Index: .github/workflows/macos-12.yml ================================================================== --- .github/workflows/macos-12.yml +++ .github/workflows/macos-12.yml @@ -16,11 +16,11 @@ - --disable-files - --disable-shared steps: - name: Install dependencies run: brew install autoconf automake - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: autogen.sh run: ./autogen.sh - name: configure run: ./configure ${{ matrix.configure_flags }} - name: make Index: .github/workflows/macos-13.yml ================================================================== --- .github/workflows/macos-13.yml +++ .github/workflows/macos-13.yml @@ -16,11 +16,11 @@ - --disable-files - --disable-shared steps: - name: Install dependencies run: brew install autoconf automake - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: autogen.sh run: ./autogen.sh - name: configure run: ./configure ${{ matrix.configure_flags }} - name: make Index: .github/workflows/morphos.yml ================================================================== --- .github/workflows/morphos.yml +++ .github/workflows/morphos.yml @@ -3,14 +3,14 @@ jobs: build: runs-on: ubuntu-latest container: amigadev/crosstools:ppc-morphos steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: autogen.sh run: ./autogen.sh - name: configure run: ./configure --host=ppc-morphos - name: make run: make -j$(nproc) - name: make install run: make install Index: .github/workflows/netbsd-gcc.yml ================================================================== --- .github/workflows/netbsd-gcc.yml +++ .github/workflows/netbsd-gcc.yml @@ -8,11 +8,11 @@ configure_flags: - - --disable-shared - --with-tls=gnutls steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: vmactions/netbsd-vm@v0 with: usesh: true copyback: false prepare: | Index: .github/workflows/netbsd.yml ================================================================== --- .github/workflows/netbsd.yml +++ .github/workflows/netbsd.yml @@ -8,11 +8,11 @@ configure_flags: - - --disable-shared - --with-tls=gnutls steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: vmactions/netbsd-vm@v0 with: usesh: true copyback: false prepare: | Index: .github/workflows/nintendo-3ds.yml ================================================================== --- .github/workflows/nintendo-3ds.yml +++ .github/workflows/nintendo-3ds.yml @@ -4,11 +4,11 @@ build: runs-on: ubuntu-latest steps: - name: Install dependencies run: docker pull devkitpro/devkitarm - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: autogen.sh run: ./autogen.sh - name: configure run: | docker run \ Index: .github/workflows/nintendo-ds.yml ================================================================== --- .github/workflows/nintendo-ds.yml +++ .github/workflows/nintendo-ds.yml @@ -4,11 +4,11 @@ build: runs-on: ubuntu-latest steps: - name: Install dependencies run: docker pull devkitpro/devkitarm - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: autogen.sh run: ./autogen.sh - name: configure run: | docker run \ Index: .github/workflows/nintendo-switch.yml ================================================================== --- .github/workflows/nintendo-switch.yml +++ .github/workflows/nintendo-switch.yml @@ -4,11 +4,11 @@ build: runs-on: ubuntu-latest steps: - name: Install dependencies run: docker pull devkitpro/devkita64 - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: autogen.sh run: ./autogen.sh - name: configure run: | docker run \ Index: .github/workflows/openbsd.yml ================================================================== --- .github/workflows/openbsd.yml +++ .github/workflows/openbsd.yml @@ -8,11 +8,11 @@ configure_flags: - - --disable-shared - --with-tls=gnutls steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: vmactions/openbsd-vm@v0 with: usesh: true copyback: false prepare: | Index: .github/workflows/ubuntu-20.04-32bit.yml ================================================================== --- .github/workflows/ubuntu-20.04-32bit.yml +++ .github/workflows/ubuntu-20.04-32bit.yml @@ -22,11 +22,11 @@ steps: - name: Install dependencies run: | sudo apt-get update sudo apt-get install gcc-multilib - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: autogen.sh run: ./autogen.sh - name: configure run: ./configure OBJC="clang -m32" ${{ matrix.configure_flags }} - name: make Index: .github/workflows/ubuntu-20.04-gcc-32bit.yml ================================================================== --- .github/workflows/ubuntu-20.04-gcc-32bit.yml +++ .github/workflows/ubuntu-20.04-gcc-32bit.yml @@ -22,11 +22,11 @@ steps: - name: Install dependencies run: | sudo apt-get update sudo apt-get install gcc-multilib gobjc - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: autogen.sh run: ./autogen.sh - name: configure run: ./configure OBJC="gcc -m32" ${{ matrix.configure_flags }} - name: make Index: .github/workflows/ubuntu-20.04-gcc.yml ================================================================== --- .github/workflows/ubuntu-20.04-gcc.yml +++ .github/workflows/ubuntu-20.04-gcc.yml @@ -24,11 +24,11 @@ steps: - name: Install dependencies run: | sudo apt-get update sudo apt-get install gobjc libssl-dev gnutls-dev - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: autogen.sh run: ./autogen.sh - name: configure run: ./configure OBJC="gcc" ${{ matrix.configure_flags }} - name: make Index: .github/workflows/ubuntu-20.04.yml ================================================================== --- .github/workflows/ubuntu-20.04.yml +++ .github/workflows/ubuntu-20.04.yml @@ -24,11 +24,11 @@ steps: - name: Install dependencies run: | sudo apt-get update sudo apt-get install libssl-dev gnutls-dev - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: autogen.sh run: ./autogen.sh - name: configure run: ./configure ${{ matrix.configure_flags }} - name: make Index: .github/workflows/ubuntu-latest-32bit.yml ================================================================== --- .github/workflows/ubuntu-latest-32bit.yml +++ .github/workflows/ubuntu-latest-32bit.yml @@ -22,11 +22,11 @@ steps: - name: Install dependencies run: | sudo apt-get update sudo apt-get install gcc-multilib - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: autogen.sh run: ./autogen.sh - name: configure run: ./configure OBJC="clang -m32" ${{ matrix.configure_flags }} - name: make Index: .github/workflows/ubuntu-latest-gcc-32bit.yml ================================================================== --- .github/workflows/ubuntu-latest-gcc-32bit.yml +++ .github/workflows/ubuntu-latest-gcc-32bit.yml @@ -22,11 +22,11 @@ steps: - name: Install dependencies run: | sudo apt-get update sudo apt-get install gcc-multilib gobjc - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: autogen.sh run: ./autogen.sh - name: configure run: ./configure OBJC="gcc -m32" ${{ matrix.configure_flags }} - name: make Index: .github/workflows/ubuntu-latest-gcc.yml ================================================================== --- .github/workflows/ubuntu-latest-gcc.yml +++ .github/workflows/ubuntu-latest-gcc.yml @@ -24,11 +24,11 @@ steps: - name: Install dependencies run: | sudo apt-get update sudo apt-get install gobjc libssl-dev gnutls-dev - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: autogen.sh run: ./autogen.sh - name: configure run: ./configure OBJC="gcc" ${{ matrix.configure_flags }} - name: make Index: .github/workflows/ubuntu-latest.yml ================================================================== --- .github/workflows/ubuntu-latest.yml +++ .github/workflows/ubuntu-latest.yml @@ -24,11 +24,11 @@ steps: - name: Install dependencies run: | sudo apt-get update sudo apt-get install libssl-dev gnutls-dev - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: autogen.sh run: ./autogen.sh - name: configure run: ./configure ${{ matrix.configure_flags }} - name: make Index: .github/workflows/wii-u.yml ================================================================== --- .github/workflows/wii-u.yml +++ .github/workflows/wii-u.yml @@ -4,11 +4,11 @@ build: runs-on: ubuntu-latest steps: - name: Install dependencies run: docker pull devkitpro/devkitppc - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: autogen.sh run: ./autogen.sh - name: configure run: | docker run \ Index: .github/workflows/wii.yml ================================================================== --- .github/workflows/wii.yml +++ .github/workflows/wii.yml @@ -4,11 +4,11 @@ build: runs-on: ubuntu-latest steps: - name: Install dependencies run: docker pull devkitpro/devkitppc - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: autogen.sh run: ./autogen.sh - name: configure run: | docker run \