Bump aws-actions/configure-aws-credentials from 4.1.0 to 4.2.1 #343
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check Clojure CA | |
on: pull_request | |
env: | |
CLOJURE_CLI_VERSION: "1.11.1.1347" | |
jobs: | |
check-ca: | |
if: (github.actor != 'frenchy64' || github.actor != 'dependabot') && github.repository == 'typedclojure/typedclojure' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/cache@v4 | |
with: | |
path: | | |
~/.m2/repository | |
~/.gitlibs | |
key: ${{ runner.os }}-clojure-${{ hashFiles('dev/deps.edn') }} | |
restore-keys: | | |
${{ runner.os }}-clojure- | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: "temurin" | |
java-version: "11" | |
- uses: DeLaGuardo/setup-clojure@13.1 | |
with: | |
cli: ${{ env.CLOJURE_CLI_VERSION }} | |
- name: Check Clojure CA | |
run: ./script/check-clojure-ca.sh ${{ github.actor }} |