Skip to content

Commit

Permalink
update actions
Browse files Browse the repository at this point in the history
  • Loading branch information
lesomnus committed Sep 13, 2024
1 parent 9362506 commit ef465b5
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: docker/setup-qemu-action@v2
- uses: docker/setup-buildx-action@v2

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/clade-iterate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
outputs:
references: ${{ steps.find-group.outputs.references }}
steps:
- uses: actions/cache@v3
- uses: actions/cache@v4
if: inputs.plan-name != ''
with:
path: ${{ inputs.plan-name }}
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
reference: ${{ fromJson(needs.setup.outputs.references) }}
steps:
- uses: lesomnus/clade/init@main
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: docker/setup-qemu-action@v2
- uses: docker/setup-buildx-action@v2
Expand All @@ -91,7 +91,7 @@ jobs:
if: inputs.cascade
steps:
- uses: lesomnus/clade/init@main
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Plan
id: plan
Expand All @@ -105,7 +105,7 @@ jobs:
echo "plan-name=${_PLAN_NAME}" | tee -a "$GITHUB_OUTPUT"
- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: ${{ steps.plan.outputs.plan-name }}
key: clade-${{ steps.plan.outputs.plan-name }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/clade-outdated.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- uses: lesomnus/clade/init@main
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Login GHCR
uses: docker/login-action@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
test:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-go@v3
with:
go-version-file: go.mod
Expand Down
6 changes: 3 additions & 3 deletions init/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ inputs:
runs:
using: composite
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
repository: lesomnus/clade
ref: ${{ inputs.ref }}
Expand Down Expand Up @@ -46,12 +46,12 @@ runs:
echo "CLADE_CI_DATE_PREV=${_DATE_PREV}" | tee -a $GITHUB_ENV
echo "CLADE_CI_DATE_CURR=${_DATE_CURR}" | tee -a $GITHUB_ENV
- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: ${{ env.CLADE_CACHE_DIR_PREV }}
key: clade-cache-${{ env.CLADE_CI_DATE_PREV }}

- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: ${{ env.CLADE_CACHE_DIR_CURR }}
key: clade-cache-${{ env.CLADE_CI_DATE_CURR }}
2 changes: 1 addition & 1 deletion outdated/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ runs:
echo "plan-name=${_PLAN_NAME}" | tee -a "$GITHUB_OUTPUT"
- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: ${{ steps.outdated.outputs.plan-name }}
key: clade-${{ steps.outdated.outputs.plan-name }}

0 comments on commit ef465b5

Please sign in to comment.