Skip to content

Commit

Permalink
update actions/checkout
Browse files Browse the repository at this point in the history
  • Loading branch information
gdams committed Dec 21, 2022
1 parent ab3d65f commit b449c01
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/advanced-example.yml
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/basic-example.yml
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/floating-tag.yml
Expand Up @@ -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: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/simple.yml
Expand Up @@ -14,7 +14,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Build and run container
id: build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/swift-build.yml
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Expand Up @@ -36,7 +36,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Build and run container
id: build
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit b449c01

Please sign in to comment.