forked from erlang/otp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build(deps): bump the github-actions group with 8 updates
Bumps the github-actions group with 8 updates: | Package | From | To | | --- | --- | --- | | [actions/create-github-app-token](https://github.com/actions/create-github-app-token) | `1.10.4` | `1.11.1` | | [actions/checkout](https://github.com/actions/checkout) | `4.1.7` | `4.2.2` | | [dorny/paths-filter](https://github.com/dorny/paths-filter) | `3.0.0` | `3.0.2` | | [actions/cache](https://github.com/actions/cache) | `4.0.2` | `4.2.0` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4.4.0` | `4.6.0` | | [Vampire/setup-wsl](https://github.com/vampire/setup-wsl) | `3.1.1` | `4.1.0` | | [softprops/action-gh-release](https://github.com/softprops/action-gh-release) | `2.0.8` | `2.2.1` | | [EnricoMi/publish-unit-test-result-action](https://github.com/enricomi/publish-unit-test-result-action) | `2.17.1` | `2.18.0` | Updates `actions/create-github-app-token` from 1.10.4 to 1.11.1 - [Release notes](https://github.com/actions/create-github-app-token/releases) - [Commits](actions/create-github-app-token@v1.10.4...v1.11.1) Updates `actions/checkout` from 4.1.7 to 4.2.2 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4.1.7...v4.2.2) Updates `dorny/paths-filter` from 3.0.0 to 3.0.2 - [Release notes](https://github.com/dorny/paths-filter/releases) - [Changelog](https://github.com/dorny/paths-filter/blob/master/CHANGELOG.md) - [Commits](dorny/paths-filter@v3...v3.0.2) Updates `actions/cache` from 4.0.2 to 4.2.0 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4.0.2...v4.2.0) Updates `actions/upload-artifact` from 4.4.0 to 4.6.0 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4.4.0...v4.6.0) Updates `Vampire/setup-wsl` from 3.1.1 to 4.1.0 - [Release notes](https://github.com/vampire/setup-wsl/releases) - [Commits](Vampire/setup-wsl@v3.1.1...v4.1.0) Updates `softprops/action-gh-release` from 2.0.8 to 2.2.1 - [Release notes](https://github.com/softprops/action-gh-release/releases) - [Changelog](https://github.com/softprops/action-gh-release/blob/master/CHANGELOG.md) - [Commits](softprops/action-gh-release@v2.0.8...v2.2.1) Updates `EnricoMi/publish-unit-test-result-action` from 2.17.1 to 2.18.0 - [Release notes](https://github.com/enricomi/publish-unit-test-result-action/releases) - [Commits](EnricoMi/publish-unit-test-result-action@v2.17.1...v2.18.0) --- updated-dependencies: - dependency-name: actions/create-github-app-token dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: dorny/paths-filter dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: Vampire/setup-wsl dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: softprops/action-gh-release dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: EnricoMi/publish-unit-test-result-action dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions ... Signed-off-by: dependabot[bot] <[email protected]>
- Loading branch information
1 parent
b6e7e23
commit 37a2b4f
Showing
6 changed files
with
40 additions
and
40 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,7 +41,7 @@ jobs: | |
c-code-changes: ${{ steps.c-code-changes.outputs.changes }} | ||
all: ${{ steps.apps.outputs.all }} | ||
steps: | ||
- uses: actions/checkout@v4.1.7 | ||
- uses: actions/checkout@v4.2.2 | ||
- uses: ./.github/actions/build-base-image | ||
with: | ||
BASE_BRANCH: ${{ env.BASE_BRANCH }} | ||
|
@@ -74,19 +74,19 @@ jobs: | |
echo "changes=${CHANGED_APPS}" >> "$GITHUB_OUTPUT" | ||
fi | ||
- name: Check if there are any C-code changes, if not then limit CI run | ||
uses: dorny/[email protected].0 | ||
uses: dorny/[email protected].2 | ||
id: c-code-changes | ||
with: | ||
filters: .github/scripts/c-code-path-filters.yaml | ||
- name: Cache pre-built src | ||
uses: actions/cache@v4.0.2 | ||
uses: actions/cache@v4.2.0 | ||
with: | ||
path: otp_src.tar.gz | ||
key: prebuilt-src-${{ github.ref_name }}-${{ github.sha }} | ||
restore-keys: | | ||
prebuilt-src-${{ github.base_ref }}-${{ github.event.pull_request.base.sha }} | ||
- name: Cache pre-built binaries | ||
uses: actions/cache@v4.0.2 | ||
uses: actions/cache@v4.2.0 | ||
with: | ||
path: otp_cache.tar.gz | ||
key: prebuilt-cache-64-bit-${{ github.ref_name }}-${{ github.sha }} | ||
|
@@ -95,7 +95,7 @@ jobs: | |
- name: Create initial pre-release tar | ||
run: .github/scripts/init-pre-release.sh otp_archive.tar.gz otp_src.tar.gz | ||
- name: Upload source tar archive | ||
uses: actions/upload-artifact@v4.4.0 | ||
uses: actions/upload-artifact@v4.6.0 | ||
with: | ||
name: otp_git_archive | ||
path: otp_archive.tar.gz | ||
|
@@ -139,7 +139,7 @@ jobs: | |
"`pwd`/.github/otp.tar.gz" \ | ||
"`pwd`/otp_archive.tar.gz" | ||
- name: Upload restored cache | ||
uses: actions/upload-artifact@v4.4.0 | ||
uses: actions/upload-artifact@v4.6.0 | ||
if: runner.debug == 1 | ||
with: | ||
name: restored-cache | ||
|
@@ -166,7 +166,7 @@ jobs: | |
bash -c 'set -x; C_APPS=$(ls -d ./lib/*/c_src); find Makefile ./make ./erts ./bin/`erts/autoconf/config.guess` ./lib/erl_interface ./lib/jinterface ${C_APPS} `echo "${C_APPS}" | sed -e 's:c_src$:priv:'` -type f -newer README.md \! -name "*.beam" \! -path "*/doc/*" | xargs tar --transform "s:^./:otp/:" -uvf /github/otp_cache.tar' | ||
gzip otp_cache.tar | ||
- name: Upload pre-built tar archives | ||
uses: actions/upload-artifact@v4.4.0 | ||
uses: actions/upload-artifact@v4.6.0 | ||
with: | ||
name: otp_prebuilt | ||
path: | | ||
|
@@ -181,7 +181,7 @@ jobs: | |
env: | ||
WXWIDGETS_VERSION: 3.1.5 | ||
steps: | ||
- uses: actions/checkout@v4.1.7 | ||
- uses: actions/checkout@v4.2.2 | ||
|
||
- name: Download source archive | ||
uses: actions/[email protected] | ||
|
@@ -190,7 +190,7 @@ jobs: | |
|
||
- name: Cache wxWidgets | ||
id: wxwidgets-cache | ||
uses: actions/cache@v4.0.2 | ||
uses: actions/cache@v4.2.0 | ||
with: | ||
path: wxWidgets | ||
key: wxWidgets-${{ env.WXWIDGETS_VERSION }}-${{ runner.os }}-12 | ||
|
@@ -216,7 +216,7 @@ jobs: | |
./bin/erl -noshell -eval '{wx_ref,_,_,_} = wx:new(), io:format("wx ok~n"), halt().' | ||
- name: Upload tarball | ||
uses: actions/upload-artifact@v4.4.0 | ||
uses: actions/upload-artifact@v4.6.0 | ||
with: | ||
name: otp_prebuilt_macos_x86-64 | ||
path: otp/otp_macos_*_x86-64.tar.gz | ||
|
@@ -229,7 +229,7 @@ jobs: | |
runs-on: macos-12 | ||
needs: pack | ||
steps: | ||
- uses: actions/checkout@v4.1.7 | ||
- uses: actions/checkout@v4.2.2 | ||
- name: Download source archive | ||
uses: actions/[email protected] | ||
with: | ||
|
@@ -250,7 +250,7 @@ jobs: | |
xcodebuild -create-xcframework -output ./liberlang.xcframework -library liberlang.a | ||
- name: Upload framework | ||
uses: actions/upload-artifact@v4.4.0 | ||
uses: actions/upload-artifact@v4.6.0 | ||
with: | ||
name: ios_framework_${{ env.TARGET_ARCH }} | ||
path: otp/liberlang.xcframework | ||
|
@@ -266,7 +266,7 @@ jobs: | |
needs: pack | ||
if: needs.pack.outputs.c-code-changes | ||
steps: | ||
- uses: Vampire/setup-wsl@v3.1.1 | ||
- uses: Vampire/setup-wsl@v4.1.0 | ||
with: | ||
distribution: Ubuntu-18.04 | ||
|
||
|
@@ -280,7 +280,7 @@ jobs: | |
IF EXIST "c:\\Program Files\\OpenSSL-Win64" (move "c:\\Program Files\\OpenSSL-Win64" "c:\\OpenSSL-Win64") ELSE (move "c:\\Program Files\\OpenSSL" "c:\\OpenSSL-Win64") | ||
- name: Cache wxWidgets | ||
uses: actions/cache@v4.0.2 | ||
uses: actions/cache@v4.2.0 | ||
with: | ||
path: wxWidgets | ||
key: wxWidgets-${{ env.WXWIDGETS_VERSION }}-${{ runner.os }} | ||
|
@@ -350,7 +350,7 @@ jobs: | |
./otp_build installer_win32 | ||
- name: Upload installer | ||
uses: actions/upload-artifact@v4.4.0 | ||
uses: actions/upload-artifact@v4.6.0 | ||
with: | ||
name: otp_win32_installer | ||
path: otp/release/win32/otp*.exe | ||
|
@@ -362,7 +362,7 @@ jobs: | |
if: needs.pack.outputs.c-code-changes | ||
|
||
steps: | ||
- uses: actions/checkout@v4.1.7 | ||
- uses: actions/checkout@v4.2.2 | ||
- uses: ./.github/actions/build-base-image | ||
with: | ||
BASE_BRANCH: ${{ env.BASE_BRANCH }} | ||
|
@@ -390,7 +390,7 @@ jobs: | |
fail-fast: false | ||
|
||
steps: | ||
- uses: actions/checkout@v4.1.7 | ||
- uses: actions/checkout@v4.2.2 | ||
- uses: ./.github/actions/build-base-image | ||
with: | ||
BASE_BRANCH: ${{ env.BASE_BRANCH }} | ||
|
@@ -401,7 +401,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
needs: pack | ||
steps: | ||
- uses: actions/checkout@v4.1.7 | ||
- uses: actions/checkout@v4.2.2 | ||
- uses: ./.github/actions/build-base-image | ||
with: | ||
BASE_BRANCH: ${{ env.BASE_BRANCH }} | ||
|
@@ -423,12 +423,12 @@ jobs: | |
rm -rf man | ||
tar czf ../otp_doc_html.tar.gz * | ||
- name: Upload html documentation archive | ||
uses: actions/upload-artifact@v4.4.0 | ||
uses: actions/upload-artifact@v4.6.0 | ||
with: | ||
name: otp_doc_html | ||
path: otp_doc_html.tar.gz | ||
- name: Upload man documentation archive | ||
uses: actions/upload-artifact@v4.4.0 | ||
uses: actions/upload-artifact@v4.6.0 | ||
with: | ||
name: otp_doc_man | ||
path: otp_doc_man.tar.gz | ||
|
@@ -443,7 +443,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
needs: pack | ||
steps: | ||
- uses: actions/checkout@v4.1.7 | ||
- uses: actions/checkout@v4.2.2 | ||
- uses: ./.github/actions/build-base-image | ||
with: | ||
BASE_BRANCH: ${{ env.BASE_BRANCH }} | ||
|
@@ -472,7 +472,7 @@ jobs: | |
# type: ["os_mon","sasl"] | ||
fail-fast: false | ||
steps: | ||
- uses: actions/checkout@v4.1.7 | ||
- uses: actions/checkout@v4.2.2 | ||
- uses: ./.github/actions/build-base-image | ||
with: | ||
BASE_BRANCH: ${{ env.BASE_BRANCH }} | ||
|
@@ -509,7 +509,7 @@ jobs: | |
sudo bash -c "chown -R `whoami` make_test_dir && chmod -R +r make_test_dir" | ||
tar czf ${{ matrix.type }}_test_results.tar.gz make_test_dir | ||
- name: Upload test results | ||
uses: actions/upload-artifact@v4.4.0 | ||
uses: actions/upload-artifact@v4.6.0 | ||
if: ${{ !cancelled() }} | ||
with: | ||
name: ${{ matrix.type }}_test_results | ||
|
@@ -521,7 +521,7 @@ jobs: | |
if: ${{ !cancelled() }} # Run even if the need has failed | ||
needs: test | ||
steps: | ||
- uses: actions/checkout@v4.1.7 | ||
- uses: actions/checkout@v4.2.2 | ||
- uses: ./.github/actions/build-base-image | ||
with: | ||
BASE_BRANCH: ${{ env.BASE_BRANCH }} | ||
|
@@ -556,14 +556,14 @@ jobs: | |
-e 's:\(file="erts/\)make_test_dir/[^/]*:\1test:g' \ | ||
make_test_dir/*_junit.xml | ||
- name: Upload test results | ||
uses: actions/upload-artifact@v4.4.0 | ||
uses: actions/upload-artifact@v4.6.0 | ||
if: ${{ !cancelled() }} | ||
with: | ||
name: test_results | ||
path: test_results.tar.gz | ||
- name: Upload Test Results | ||
if: ${{ !cancelled() }} | ||
uses: actions/upload-artifact@v4.4.0 | ||
uses: actions/upload-artifact@v4.6.0 | ||
with: | ||
name: Unit Test Results | ||
path: | | ||
|
@@ -590,7 +590,7 @@ jobs: | |
echo "tag=${TAG}" >> $GITHUB_OUTPUT | ||
echo "vsn=${VSN}" >> $GITHUB_OUTPUT | ||
- uses: actions/checkout@v4.1.7 | ||
- uses: actions/checkout@v4.2.2 | ||
|
||
## Publish the pre-built archive and docs | ||
- name: Download source archive | ||
|
@@ -621,7 +621,7 @@ jobs: | |
sha256sum $FILES > SHA256.txt | ||
- name: Upload pre-built and doc tar archives | ||
uses: softprops/action-gh-release@v2.0.8 | ||
uses: softprops/action-gh-release@v2.2.1 | ||
with: | ||
name: OTP ${{ steps.tag.outputs.vsn }} | ||
files: | | ||
|
@@ -640,7 +640,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Upload | ||
uses: actions/upload-artifact@v4.4.0 | ||
uses: actions/upload-artifact@v4.6.0 | ||
with: | ||
name: Event File | ||
path: ${{ github.event_path }} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,7 @@ jobs: | |
outputs: | ||
result: ${{ steps.pr-number.outputs.result }} | ||
steps: | ||
- uses: actions/checkout@v4.1.7 | ||
- uses: actions/checkout@v4.2.2 | ||
- name: Fetch PR number | ||
id: pr-number | ||
env: | ||
|
@@ -40,7 +40,7 @@ jobs: | |
pull-requests: write | ||
if: github.event.action == 'requested' && needs.pr-number.outputs.result != '' | ||
steps: | ||
- uses: actions/checkout@v4.1.7 | ||
- uses: actions/checkout@v4.2.2 | ||
## We create an initial comment with some useful help to the user | ||
- uses: actions/[email protected] | ||
with: | ||
|
@@ -63,7 +63,7 @@ jobs: | |
needs.pr-number.outputs.result != '' && | ||
github.event.workflow_run.conclusion != 'skipped' | ||
steps: | ||
- uses: actions/checkout@v4.1.7 | ||
- uses: actions/checkout@v4.2.2 | ||
- name: Download and Extract Artifacts | ||
id: extract | ||
env: | ||
|
@@ -88,14 +88,14 @@ jobs: | |
echo "HAS_TEST_ARTIFACTS=false" >> $GITHUB_OUTPUT | ||
fi | ||
- uses: actions/checkout@v4.1.7 | ||
- uses: actions/checkout@v4.2.2 | ||
with: | ||
token: ${{ secrets.ERLANG_TOKEN }} | ||
repository: 'erlang/erlang.github.io' | ||
path: erlang.github.io | ||
|
||
- name: Publish CT Test Results | ||
uses: EnricoMi/publish-unit-test-result-action@v2.17.1 | ||
uses: EnricoMi/publish-unit-test-result-action@v2.18.0 | ||
if: steps.extract.outputs.HAS_TEST_ARTIFACTS == 'true' | ||
with: | ||
commit: ${{ github.event.workflow_run.head_sha }} | ||
|
This file contains 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
This file contains 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
This file contains 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