Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: update github actions dependencies #26

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Oct 4, 2023

Mend Renovate

This PR contains the following updates:

Package Type Update Change
actions/cache action major v2 -> v4
actions/cache action major v3 -> v4
actions/checkout action major v3 -> v4
actions/download-artifact action major v2 -> v4
actions/download-artifact action major v3 -> v4
actions/labeler action major v4 -> v5
actions/setup-go action major v4 -> v5
actions/setup-node action major v3 -> v4
actions/upload-artifact action major v2 -> v4
actions/upload-artifact action major v3 -> v4
dawidd6/action-download-artifact action major v2 -> v3
docker/build-push-action action major v3 -> v5
docker/login-action action major v2 -> v3
docker/setup-buildx-action action major v2 -> v3
docker/setup-qemu-action action major v2 -> v3
golangci/golangci-lint-action action major v3 -> v4
peter-evans/repository-dispatch action major v2 -> v3
tj-actions/changed-files action major v36 -> v43

Release Notes

actions/cache (actions/cache)

v4

Compare Source

v3

Compare Source

actions/checkout (actions/checkout)

v4

Compare Source

actions/download-artifact (actions/download-artifact)

v4

Compare Source

v3

Compare Source

actions/labeler (actions/labeler)

v5

Compare Source

actions/setup-go (actions/setup-go)

v5

Compare Source

actions/setup-node (actions/setup-node)

v4

Compare Source

actions/upload-artifact (actions/upload-artifact)

v4

Compare Source

v3

Compare Source

dawidd6/action-download-artifact (dawidd6/action-download-artifact)

v3

Compare Source

docker/build-push-action (docker/build-push-action)

v5

Compare Source

v4

Compare Source

docker/login-action (docker/login-action)

v3

Compare Source

docker/setup-buildx-action (docker/setup-buildx-action)

v3

Compare Source

docker/setup-qemu-action (docker/setup-qemu-action)

v3

Compare Source

golangci/golangci-lint-action (golangci/golangci-lint-action)

v4

Compare Source

peter-evans/repository-dispatch (peter-evans/repository-dispatch)

v3

Compare Source

tj-actions/changed-files (tj-actions/changed-files)

v43

Compare Source

Changes in v43.0.0
🔥🔥 BREAKING CHANGE 🔥🔥
  • any_{changed, modified, deleted} outputs now return true when no file/directory patterns are specified.
What's Changed

Full Changelog: tj-actions/changed-files@v42...v43.0.0


v42

Compare Source

Changes in v42.1.0

🚀 🚀 New Feature 🚀 🚀

  • Use changed-files output to run matrix jobs by simply setting the new matrix input to true.

This serves as an alias for setting the json input to true and the escape_json input to false

      - name: Get changed files
        id: changed-files
        uses: tj-actions/changed-files@v42
        with:
           matrix: true

What's Changed

Full Changelog: tj-actions/changed-files@v42...v42.1.0


Changes in v42.0.7

What's Changed

Full Changelog: tj-actions/changed-files@v42...v42.0.7


Changes in v42.0.6

What's Changed

Full Changelog: tj-actions/changed-files@v42...v42.0.6


Changes in v42.0.5

What's Changed

Full Changelog: tj-actions/changed-files@v42...v42.0.5


Changes in v42.0.4

What's Changed

Full Changelog: tj-actions/changed-files@v42...v42.0.4


Changes in v42.0.3

What's Changed

New Contributors

Full Changelog: tj-actions/changed-files@v42...v42.0.3


Changes in v42.0.2

What's Changed

Full Changelog: tj-actions/changed-files@v42...v42.0.2


Changes in v42.0.1

What's Changed

Full Changelog: tj-actions/changed-files@v42...v42.0.1


Changes in v42.0.0

🔥🔥 BREAKING CHANGE 🔥🔥

  • Input file patterns that end with a / would now match all sub-files within the directory without requiring you to specify the globstar pattern.
...
      - name: Get changed files
        id: changed-files
        uses: tj-actions/changed-files@v42
        with:
          files: 'dir/'  # Would also be the same as dir/** 

What's Changed

Full Changelog: tj-actions/changed-files@v41...v42.0.0


v41

Compare Source

Changes in v41.1.2
What's Changed

Full Changelog: tj-actions/changed-files@v41...v41.1.2


Changes in v41.1.1
What's Changed

Full Changelog: tj-actions/changed-files@v41...v41.1.1


Changes in v41.1.0
What's Changed

Full Changelog: tj-actions/changed-files@v41...v41.1.0


Changes in v41.0.1
What's Changed

Full Changelog: tj-actions/changed-files@v41...v41.0.1


Changes in v41.0.0
🔥 🔥 BREAKING CHANGE 🔥 🔥

A new safe_output input is now available to prevent outputting unsafe filename characters (Enabled by default). This would escape characters in the filename that could be used for command injection.

[!NOTE]
This can be disabled by setting the safe_output to false this comes with a recommendation to store all outputs generated in an environment variable first before using them.

Example
...
    - name: Get changed files
      id: changed-files
      uses: tj-actions/changed-files@v40
      with:
        safe_output: false # set to false because we are using an environment variable to store the output and avoid command injection.

    - name: List all added files
      env:
        ADDED_FILES: ${{ steps.changed-files.outputs.added_files }}
      run: |
        for file in "$ADDED_FILES"; do
          echo "$file was added"
        done
...
What's Changed

Full Changelog: tj-actions/changed-files@v40...v41.0.0


v40

Compare Source

Changes in v40.2.3
What's Changed

Full Changelog: tj-actions/changed-files@v40...v40.2.3


Changes in v40.2.2
What's Changed

Full Changelog: tj-actions/changed-files@v40...v40.2.2


Changes in v40.2.1
What's Changed

Configuration

📅 Schedule: Branch creation - "before 3:00 am on the 4th day of the month" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@github-actions github-actions bot added the ci label Oct 4, 2023
@renovate renovate bot force-pushed the renovate/github-actions branch 2 times, most recently from 80da1fb to 8f73c02 Compare October 26, 2023 10:25
@renovate renovate bot force-pushed the renovate/github-actions branch 2 times, most recently from 39b4796 to aff752e Compare December 5, 2023 03:23
@renovate renovate bot force-pushed the renovate/github-actions branch 4 times, most recently from 741db31 to d1e3790 Compare December 14, 2023 03:05
@renovate renovate bot force-pushed the renovate/github-actions branch from d1e3790 to a485556 Compare December 15, 2023 20:32
@renovate renovate bot force-pushed the renovate/github-actions branch from a485556 to 7cdc1b3 Compare December 24, 2023 08:09
@renovate renovate bot force-pushed the renovate/github-actions branch from 7cdc1b3 to c25db75 Compare January 18, 2024 05:42
@renovate renovate bot force-pushed the renovate/github-actions branch from c25db75 to 5054448 Compare January 26, 2024 02:55
@renovate renovate bot force-pushed the renovate/github-actions branch 17 times, most recently from 2a04f51 to d3d73f1 Compare February 9, 2024 08:51
@renovate renovate bot force-pushed the renovate/github-actions branch 27 times, most recently from c861f17 to 2851bca Compare March 20, 2024 06:18
@renovate renovate bot force-pushed the renovate/github-actions branch from 2851bca to afd651f Compare March 20, 2024 06:26
@rot1024 rot1024 closed this Mar 20, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant