Skip to content

Commit

Permalink
Update github actions versions
Browse files Browse the repository at this point in the history
Signed-off-by: Pedro Nuno Santos <[email protected]>
  • Loading branch information
pn-santos committed Oct 31, 2024
1 parent 620691b commit b8bef51
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,18 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
with: {submodules: true}
- run: scripts/test

build-image:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
with: {submodules: true}
- run: scripts/build
- run: scripts/build-image
- uses: actions/upload-artifact@v1
- uses: actions/upload-artifact@v4
with:
name: image
path: image
Expand All @@ -26,9 +26,11 @@ jobs:
needs: [build-image]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/download-artifact@v1
with: {name: image}
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: image
path: image
- uses: docker://concourse/registry-image-resource
with: {entrypoint: scripts/push-image}
env:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
with: {submodules: true}
- run: scripts/test

build-image:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
with: {submodules: true}
- run: scripts/build
- run: scripts/build-image

0 comments on commit b8bef51

Please sign in to comment.