From fce19fb88fa2eb8bb6e1b625cd8f4323f61194e7 Mon Sep 17 00:00:00 2001 From: Simon Exner <43469235+0815Creeper@users.noreply.github.com> Date: Mon, 16 Sep 2024 11:16:54 +0200 Subject: [PATCH] action-deps-version-bumps --- .github/dependabot.yml | 9 +++++++++ .github/workflows/Documentation.yml | 2 +- .github/workflows/Eval.yml | 2 +- .github/workflows/Example.yml | 6 +++--- .github/workflows/TestLTS.yml | 2 +- .github/workflows/TestLatest.yml | 2 +- 6 files changed, 16 insertions(+), 7 deletions(-) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..984e3f18 --- /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/Documentation.yml b/.github/workflows/Documentation.yml index cbf29266..22d4e996 100644 --- a/.github/workflows/Documentation.yml +++ b/.github/workflows/Documentation.yml @@ -28,7 +28,7 @@ jobs: ref: '' - name: "Set up Julia" - uses: julia-actions/setup-julia@latest + uses: julia-actions/setup-julia@v2 with: version: '1' # 1.6 arch: x64 diff --git a/.github/workflows/Eval.yml b/.github/workflows/Eval.yml index cb1a5e7b..321f06c7 100644 --- a/.github/workflows/Eval.yml +++ b/.github/workflows/Eval.yml @@ -24,7 +24,7 @@ jobs: # 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 }} diff --git a/.github/workflows/Example.yml b/.github/workflows/Example.yml index 3d863ee8..ed73abc2 100644 --- a/.github/workflows/Example.yml +++ b/.github/workflows/Example.yml @@ -30,7 +30,7 @@ jobs: uses: actions/checkout@v4 - 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 }} @@ -99,7 +99,7 @@ jobs: uses: actions/checkout@v4 - name: "Set up Julia" - uses: julia-actions/setup-julia@v1 + uses: julia-actions/setup-julia@v2 with: version: '1.10' @@ -145,6 +145,6 @@ jobs: steps: # Trigger an repoisitory dispath event - name: Repository Dispatch - uses: peter-evans/repository-dispatch@v2 + uses: peter-evans/repository-dispatch@v3 with: event-type: trigger-docu diff --git a/.github/workflows/TestLTS.yml b/.github/workflows/TestLTS.yml index 823a7029..ffd9d004 100644 --- a/.github/workflows/TestLTS.yml +++ b/.github/workflows/TestLTS.yml @@ -30,7 +30,7 @@ jobs: # 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 }} diff --git a/.github/workflows/TestLatest.yml b/.github/workflows/TestLatest.yml index 0d577b94..53a2bd19 100644 --- a/.github/workflows/TestLatest.yml +++ b/.github/workflows/TestLatest.yml @@ -30,7 +30,7 @@ jobs: # 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 }}