Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build_java_hello_world_reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ jobs:
with:
version: 0.11.0
- name: Checkout cedar-examples
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
repository: cedar-policy/cedar-examples
ref: ${{ inputs.cedar_examples_ref }}
- name: Checkout cedar-java
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
repository: cedar-policy/cedar-java
ref: ${{ inputs.cedar_java_ref }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
distribution: 'corretto'
java-version: '21'
- name: Checkout cedar-examples
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
repository: cedar-policy/cedar-examples
ref: ${{ inputs.cedar_examples_ref }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_rust_hello_world_reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- stable
steps:
- name: Checkout cedar-examples
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
repository: cedar-policy/cedar-examples
ref: ${{ inputs.cedar_examples_ref }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build_tiny_todo_go_reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ jobs:
go-version: [ '1.22' ]
steps:
- name: Checkout cedar-examples
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
repository: cedar-policy/cedar-examples
ref: ${{ inputs.cedar_examples_ref }}
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v6
uses: actions/setup-go@v7
with:
go-version: ${{ matrix.go-version }}
- name: go vet
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_tiny_todo_reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- stable
steps:
- name: Checkout cedar-examples
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
repository: cedar-policy/cedar-examples
ref: ${{ inputs.cedar_examples_ref }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build_wasm_example_reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ jobs:
- stable
steps:
- name: Checkout cedar-examples
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
repository: cedar-policy/cedar-examples
ref: ${{ inputs.cedar_examples_ref }}
- name: Checkout cedar
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
repository: cedar-policy/cedar
ref: ${{ inputs.cedar_policy_ref }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout cedar-examples
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4
- name: Build Docker image
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
push: false
context: oopsla2024-benchmarks
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/run_example_use_cases_reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ jobs:
- stable
steps:
- name: Checkout cedar-examples
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
repository: cedar-policy/cedar-examples
ref: ${{ inputs.cedar_examples_ref }}
- name: Checkout cedar-policy
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
repository: cedar-policy/cedar
ref: ${{ inputs.cedar_policy_ref }}
Expand Down
Loading