From 7f852ac0e1c3e394c43646dc0a474c5b4e719fab Mon Sep 17 00:00:00 2001 From: George Adams Date: Wed, 21 Dec 2022 13:05:32 +0000 Subject: [PATCH] update actions/checkout --- .github/workflows/advanced-example.yml | 2 +- .github/workflows/basic-example.yml | 2 +- .github/workflows/floating-tag.yml | 2 +- .github/workflows/simple.yml | 2 +- .github/workflows/swift-build.yml | 2 +- .github/workflows/test.yml | 4 +++- README.md | 4 ++-- 7 files changed, 10 insertions(+), 8 deletions(-) diff --git a/.github/workflows/advanced-example.yml b/.github/workflows/advanced-example.yml index 77aa1dec..f16f92d2 100644 --- a/.github/workflows/advanced-example.yml +++ b/.github/workflows/advanced-example.yml @@ -23,7 +23,7 @@ jobs: distro: archarm_latest steps: - - uses: actions/checkout@v2.1.0 + - uses: actions/checkout@v3 - uses: ./ # If copying this example, change this to uraimo/run-on-arch-action@vX.Y.Z name: Build artifact id: build diff --git a/.github/workflows/basic-example.yml b/.github/workflows/basic-example.yml index 56b685ab..3203f670 100644 --- a/.github/workflows/basic-example.yml +++ b/.github/workflows/basic-example.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-18.04 name: Build on ubuntu-18.04 armv7 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: uraimo/run-on-arch-action@v2 name: Run commands id: runcmd diff --git a/.github/workflows/floating-tag.yml b/.github/workflows/floating-tag.yml index 95a9c53e..0e27c828 100644 --- a/.github/workflows/floating-tag.yml +++ b/.github/workflows/floating-tag.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest name: Update floating tag steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: fregante/setup-git-user@v1 - name: Tag and push run: | diff --git a/.github/workflows/simple.yml b/.github/workflows/simple.yml index 0895666f..564935b6 100644 --- a/.github/workflows/simple.yml +++ b/.github/workflows/simple.yml @@ -14,7 +14,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Build and run container id: build diff --git a/.github/workflows/swift-build.yml b/.github/workflows/swift-build.yml index de135b60..23e5de36 100644 --- a/.github/workflows/swift-build.yml +++ b/.github/workflows/swift-build.yml @@ -7,7 +7,7 @@ jobs: name: A job to test the multi architecture actions steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Build uses: ./ with: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e95a5876..3fab98d7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -21,6 +21,8 @@ jobs: distro: buster - arch: armv7 distro: jessie + - arch: riscv64 + distro: alpine_latest - arch: riscv64 distro: ubuntu20.04 - arch: s390x @@ -36,7 +38,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Build and run container id: build diff --git a/README.md b/README.md index 8042b696..489cc181 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ jobs: runs-on: ubuntu-18.04 name: Build on ubuntu-18.04 armv7 steps: - - uses: actions/checkout@v2.1.0 + - uses: actions/checkout@v3 - uses: uraimo/run-on-arch-action@v2 name: Run commands id: runcmd @@ -82,7 +82,7 @@ jobs: distro: fedora_latest steps: - - uses: actions/checkout@v2.1.0 + - uses: actions/checkout@v3 - uses: uraimo/run-on-arch-action@v2 name: Build artifact id: build