diff options
author | Daniel Nilsson <dannil+github@protonmail.com> | 2024-11-15 20:20:55 +0100 |
---|---|---|
committer | Hannu Nyman <hannu.nyman@iki.fi> | 2024-11-17 09:45:19 +0200 |
commit | 69d379af9ad47c6efc445f902dea0751789ee0aa (patch) | |
tree | d91db5ae00c1a8059f3b1a806d10b8cfb0e2dbed /.github/workflows/build.yml | |
parent | 09e8d5108ed678db5b940b1eb51dff2b9b6af189 (diff) |
ci: upgrade openwrt/gh-action-sdk workflow to v7
With the change of the Docker container not including pre-built
binaries [1], the previous version of the workflow fails as it still
expects those to be present in the upstream container while the new
versions runs a file called setup.sh if present to configure the
container.
By upgrading openwrt/gh-action-sdk workflow to v7, we make sure that
setup.sh is run and configures the container [2].
[1] https://github.com/openwrt/docker/commit/9b55784b18f8d2c684aac4dd21a224320bb9b9ce
[2] https://github.com/openwrt/gh-action-sdk/commit/0c00b28c11bed5c7697e807d4cb8ef176ca688ef
Signed-off-by: Daniel Nilsson <dannil+github@protonmail.com>
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r-- | .github/workflows/build.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fd5e2cfa40..982a3447b4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -50,7 +50,7 @@ jobs: echo "PACKAGES=$PACKAGES" >> $GITHUB_ENV - name: Build - uses: openwrt/gh-action-sdk@v5 + uses: openwrt/gh-action-sdk@v7 env: ARCH: ${{ matrix.arch }}-${{ env.BRANCH }} FEEDNAME: packages_ci |