naett.c

Tiny cross-platform HTTP / HTTPS client library in C.
git clone git://git.finwo.net/lib/naett.c
Log | Files | Refs | README | LICENSE

commit 2eb6d87d2b62e2937bd6c7185e8a5b19a088c2aa
parent 72e026e64e2f5f94c58fdfe0265cfc016a2956a3
Author: Erik Agsjö <erik.agsjo@gmail.com>
Date:   Wed, 24 May 2023 23:34:04 +0200

Updated workflows

Diffstat:
M.github/workflows/android.yml | 12++++++------
M.github/workflows/cmdline.yml | 8++++----
2 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml @@ -16,20 +16,20 @@ jobs: steps: - name: Check out code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - - name: Set up Go 1.17 - uses: actions/setup-go@v2 + - name: Set up Go 1.19 + uses: actions/setup-go@v4 with: - go-version: 1.17 + go-version: 1.19 - - uses: actions/setup-java@v2 + - uses: actions/setup-java@v3 with: java-version: '11' distribution: 'temurin' - name: AVD cache - uses: actions/cache@v2 + uses: actions/cache@v3 id: avd-cache with: path: | diff --git a/.github/workflows/cmdline.yml b/.github/workflows/cmdline.yml @@ -15,14 +15,14 @@ jobs: os: [macos-latest, ubuntu-latest, windows-latest] steps: - - name: Set up Go 1.17 - uses: actions/setup-go@v1 + - name: Set up Go 1.19 + uses: actions/setup-go@v4 with: - go-version: 1.17 + go-version: 1.19 id: go - name: Check out code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Install windows build helpers if: startsWith(matrix.os, 'windows')