Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] .github/workflows: update actions/checkout to v2
@ 2020-11-14  4:45 smorimoto
  2020-11-14  6:26 ` ericonr
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: smorimoto @ 2020-11-14  4:45 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 349 bytes --]

There is a new pull request by smorimoto against master on the void-packages repository

https://github.com/smorimoto/void-packages actions-checkout-v2
https://github.com/void-linux/void-packages/pull/26368

.github/workflows: update actions/checkout to v2


A patch file from https://github.com/void-linux/void-packages/pull/26368.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-actions-checkout-v2-26368.patch --]
[-- Type: text/x-diff, Size: 1007 bytes --]

From 93f389649589f0e55136a6bf529c56196db6f9f7 Mon Sep 17 00:00:00 2001
From: Sora Morimoto <sora@morimoto.io>
Date: Sat, 14 Nov 2020 13:43:57 +0900
Subject: [PATCH] .github/workflows: update actions/checkout to v2

Signed-off-by: Sora Morimoto <sora@morimoto.io>
---
 .github/workflows/build.yaml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index 8c0cdccf5d4..a59c1fb2979 100644
--- a/.github/workflows/build.yaml
+++ b/.github/workflows/build.yaml
@@ -14,7 +14,7 @@ jobs:
       LICENSE_LIST: common/travis/license.lst
 
     steps:
-      - uses: actions/checkout@v1
+      - uses: actions/checkout@v2
         with:
           fetch-depth: 200
       - run: common/travis/fetch_upstream.sh
@@ -58,7 +58,7 @@ jobs:
           # Install git
           xbps-install -y git
 
-      - uses: actions/checkout@v1
+      - uses: actions/checkout@v2
         with:
           fetch-depth: 200
       - name: Create hostrepo

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: .github/workflows: update actions/checkout to v2
  2020-11-14  4:45 [PR PATCH] .github/workflows: update actions/checkout to v2 smorimoto
@ 2020-11-14  6:26 ` ericonr
  2020-11-14  6:31 ` sgn
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: ericonr @ 2020-11-14  6:26 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 198 bytes --]

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/26368#issuecomment-727153920

Comment:
v2 action depends on nodejs and is all kinds of broken :p

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: .github/workflows: update actions/checkout to v2
  2020-11-14  4:45 [PR PATCH] .github/workflows: update actions/checkout to v2 smorimoto
  2020-11-14  6:26 ` ericonr
@ 2020-11-14  6:31 ` sgn
  2020-11-14  6:33 ` smorimoto
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: sgn @ 2020-11-14  6:31 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 285 bytes --]

New comment by sgn on void-packages repository

https://github.com/void-linux/void-packages/pull/26368#issuecomment-727154514

Comment:
> v2 action depends on nodejs and is all kinds of broken :p

Doesn't v1 also depend of nodejs? And isn't nodejs always available is GitHub Action.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: .github/workflows: update actions/checkout to v2
  2020-11-14  4:45 [PR PATCH] .github/workflows: update actions/checkout to v2 smorimoto
  2020-11-14  6:26 ` ericonr
  2020-11-14  6:31 ` sgn
@ 2020-11-14  6:33 ` smorimoto
  2020-11-17  5:21 ` RossComputerGuy
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: smorimoto @ 2020-11-14  6:33 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 271 bytes --]

New comment by smorimoto on void-packages repository

https://github.com/void-linux/void-packages/pull/26368#issuecomment-727154733

Comment:
@ericonr Yes. ​So this can't be merged at this time...

@sgn The source for v1 was not public, but it was Bash, not Node.js.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: .github/workflows: update actions/checkout to v2
  2020-11-14  4:45 [PR PATCH] .github/workflows: update actions/checkout to v2 smorimoto
                   ` (2 preceding siblings ...)
  2020-11-14  6:33 ` smorimoto
@ 2020-11-17  5:21 ` RossComputerGuy
  2020-12-30  6:56 ` the-maldridge
  2020-12-30  6:56 ` [PR PATCH] [Closed]: " the-maldridge
  5 siblings, 0 replies; 7+ messages in thread
From: RossComputerGuy @ 2020-11-17  5:21 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 581 bytes --]

New comment by RossComputerGuy on void-packages repository

https://github.com/void-linux/void-packages/pull/26368#issuecomment-728693113

Comment:
Do you think you can try to rebuild some packages? I'm noticing some issues with this CI stuff on my fork and I'd like to make sure I'm not the only one having issues. Only linting and x86_64 seems to build right.

Affected packages (with architecture and issue):
* `libtool` on i686: autoconfig mismatch
* `cross-armv7l-linux-gnueabihf` on armv7l: invalid gcc arguments
* `cross-vpkg-dummy` on aarch64: public key import asked

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: .github/workflows: update actions/checkout to v2
  2020-11-14  4:45 [PR PATCH] .github/workflows: update actions/checkout to v2 smorimoto
                   ` (3 preceding siblings ...)
  2020-11-17  5:21 ` RossComputerGuy
@ 2020-12-30  6:56 ` the-maldridge
  2020-12-30  6:56 ` [PR PATCH] [Closed]: " the-maldridge
  5 siblings, 0 replies; 7+ messages in thread
From: the-maldridge @ 2020-12-30  6:56 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 201 bytes --]

New comment by the-maldridge on void-packages repository

https://github.com/void-linux/void-packages/pull/26368#issuecomment-752351158

Comment:
Closing due to the previously mentioned nodejs issues.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PR PATCH] [Closed]: .github/workflows: update actions/checkout to v2
  2020-11-14  4:45 [PR PATCH] .github/workflows: update actions/checkout to v2 smorimoto
                   ` (4 preceding siblings ...)
  2020-12-30  6:56 ` the-maldridge
@ 2020-12-30  6:56 ` the-maldridge
  5 siblings, 0 replies; 7+ messages in thread
From: the-maldridge @ 2020-12-30  6:56 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 182 bytes --]

There's a closed pull request on the void-packages repository

.github/workflows: update actions/checkout to v2
https://github.com/void-linux/void-packages/pull/26368

Description:


^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2020-12-30  6:56 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-14  4:45 [PR PATCH] .github/workflows: update actions/checkout to v2 smorimoto
2020-11-14  6:26 ` ericonr
2020-11-14  6:31 ` sgn
2020-11-14  6:33 ` smorimoto
2020-11-17  5:21 ` RossComputerGuy
2020-12-30  6:56 ` the-maldridge
2020-12-30  6:56 ` [PR PATCH] [Closed]: " the-maldridge

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).