From 7d03044f25bab0205c5d8d0442789c838d9f8ef3 Mon Sep 17 00:00:00 2001 From: Simon Exner <43469235+0815Creeper@users.noreply.github.com> Date: Mon, 16 Sep 2024 12:11:33 +0200 Subject: [PATCH] action-deps-version-bumps --- .github/dependabot.yml | 9 +++++++++ .github/workflows/Eval.yml | 6 +++--- .github/workflows/TestLTS.yml | 6 +++--- .github/workflows/TestLatest.yml | 6 +++--- 4 files changed, 18 insertions(+), 9 deletions(-) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..47098b0 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,9 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "monthly" + labels: + - "dependencies" + - "github-actions" \ No newline at end of file diff --git a/.github/workflows/Eval.yml b/.github/workflows/Eval.yml index a160936..dd0fecb 100644 --- a/.github/workflows/Eval.yml +++ b/.github/workflows/Eval.yml @@ -20,11 +20,11 @@ jobs: steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - name: Check out repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 # Set up Julia - name: "Set up Julia" - uses: julia-actions/setup-julia@v1 + uses: julia-actions/setup-julia@v2 with: version: ${{ matrix.julia-version }} arch: ${{ matrix.julia-arch }} @@ -32,7 +32,7 @@ jobs: # Set up cache - name: "Set up cache" - uses: actions/cache@v2 + uses: actions/cache@v4 env: cache-name: cache-artifacts with: diff --git a/.github/workflows/TestLTS.yml b/.github/workflows/TestLTS.yml index 33dc030..ffd9d00 100644 --- a/.github/workflows/TestLTS.yml +++ b/.github/workflows/TestLTS.yml @@ -26,18 +26,18 @@ jobs: steps: # Checks-out your repository - name: Check out repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 # Set up Julia - name: "Set up Julia" - uses: julia-actions/setup-julia@v1 + uses: julia-actions/setup-julia@v2 with: version: ${{ matrix.julia-version }} arch: ${{ matrix.julia-arch }} # Set up cache - name: "Set up cache" - uses: actions/cache@v3 + uses: actions/cache@v4 env: cache-name: cache-artifacts with: diff --git a/.github/workflows/TestLatest.yml b/.github/workflows/TestLatest.yml index 06da0c5..53a2bd1 100644 --- a/.github/workflows/TestLatest.yml +++ b/.github/workflows/TestLatest.yml @@ -26,18 +26,18 @@ jobs: steps: # Checks-out your repository - name: Check out repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 # Set up Julia - name: "Set up Julia" - uses: julia-actions/setup-julia@v1 + uses: julia-actions/setup-julia@v2 with: version: ${{ matrix.julia-version }} arch: ${{ matrix.julia-arch }} # Set up cache - name: "Set up cache" - uses: actions/cache@v3 + uses: actions/cache@v4 env: cache-name: cache-artifacts with: