Compare commits

...

5 Commits
v1.7.0 ... main

Author SHA1 Message Date
dependabot[bot]
e85a72e789 Bump actions/cache from 4 to 5 (#65) 2025-12-12 03:19:41 -05:00
Curtis Vogt
8e4b7ee508 Update README example to use actions/checkout@v5 (#62) 2025-08-15 18:25:17 +01:00
dependabot[bot]
a2be14d86d Bump actions/checkout from 4 to 5 (#61)
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v4...v5)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '5'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-12 15:15:03 +02:00
dependabot[bot]
4ac6b31e10 Bump codecov/codecov-action from 3 to 5 (#57)
* Bump codecov/codecov-action from 3 to 5

Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 3 to 5.
- [Release notes](https://github.com/codecov/codecov-action/releases)
- [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md)
- [Commits](https://github.com/codecov/codecov-action/compare/v3...v5)

---
updated-dependencies:
- dependency-name: codecov/codecov-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* Apply suggestions from code review

Co-authored-by: Mosè Giordano <765740+giordano@users.noreply.github.com>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Dilum Aluthge <dilum@aluthge.com>
Co-authored-by: Mosè Giordano <765740+giordano@users.noreply.github.com>
2025-01-10 08:58:09 -06:00
Max Horn
fdc6cd6ae7 README.md: update actions being used (#58) 2024-11-22 06:41:29 -05:00
3 changed files with 9 additions and 9 deletions

View File

@@ -12,7 +12,7 @@ jobs:
steps: steps:
- name: Configure cache - name: Configure cache
uses: actions/cache@v4 uses: actions/cache@v5
with: with:
path: | path: |
${{ env.GITHUB_WORKSPACE }} ${{ env.GITHUB_WORKSPACE }}

View File

@@ -40,7 +40,7 @@ jobs:
steps: steps:
- name: Checkout Example.jl - name: Checkout Example.jl
uses: actions/checkout@v4 uses: actions/checkout@v5
with: with:
repository: julia-actions/Example.jl repository: julia-actions/Example.jl
@@ -49,7 +49,7 @@ jobs:
shell: bash shell: bash
- name: Checkout julia-buildpkg - name: Checkout julia-buildpkg
uses: actions/checkout@v4 uses: actions/checkout@v5
with: with:
path: ./.github/actions/julia-buildpkg path: ./.github/actions/julia-buildpkg
@@ -68,9 +68,9 @@ jobs:
- uses: julia-actions/julia-processcoverage@v1 - uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v3 - uses: codecov/codecov-action@v5
with: with:
file: lcov.info files: lcov.info
- name: Verify that test output file exists - name: Verify that test output file exists
run: test -f "$HOME/julia-buildpkg" run: test -f "$HOME/julia-buildpkg"

View File

@@ -8,7 +8,7 @@ Julia needs to be installed before this action can run. This can easily be achie
And example workflow that uses this action might look like this: And example workflow that uses this action might look like this:
``` ```yaml
name: Run tests name: Run tests
on: [push, pull_request] on: [push, pull_request]
@@ -26,8 +26,8 @@ jobs:
julia-arch: x86 julia-arch: x86
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v5
- uses: julia-actions/setup-julia@v1 - uses: julia-actions/setup-julia@v2
with: with:
version: ${{ matrix.julia-version }} version: ${{ matrix.julia-version }}
- uses: julia-actions/julia-buildpkg@v1 - uses: julia-actions/julia-buildpkg@v1
@@ -68,4 +68,4 @@ If the registry contains private packages, or is itself private, the ssh protoco
... ...
``` ```
For Julia 1.7 and above, the `git_cli` option can be used to set the `JULIA_PKG_USE_CLI_GIT` [environment flag](https://docs.julialang.org/en/v1/manual/environment-variables/), for additional control of the SSH configuration used by `Pkg` to add/dev packages. For Julia 1.7 and above, the `git_cli` option can be used to set the `JULIA_PKG_USE_CLI_GIT` [environment flag](https://docs.julialang.org/en/v1/manual/environment-variables/), for additional control of the SSH configuration used by `Pkg` to add/dev packages.