set-timezone icon indicating copy to clipboard operation
set-timezone copied to clipboard

GitHub action to set timezone in your locale, works with Linux, Windows, MacOS

Results 12 set-timezone issues
Sort by recently updated
recently updated
newest added

Update to v2.0 provided incorrect usage documentation

The version should be changed to v2.0 instead of v2. Otherwise, the following error appears: "Error: Unable to resolve action szenius/set-timezone@v2, unable to find version v2"

As per https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/, github actions will need to transition to node 20. Currently, the code is set to 16: ``` runs: using: "node16" main: "dist/index.js" ``` Thank you!

Getting this error in my workflow This is the action's setup ``` runs-on: ubuntu-latest container: image: node:18 steps: - name: Set timezone uses: szenius/[email protected] with: timezoneLinux: 'Europe/Amsterdam' ``` ```Run zcong1993/setup-timezone@master...

![gambar](https://user-images.githubusercontent.com/12471057/210154433-7ac2df0b-e30b-4422-a621-e8641c171ce0.png)

I get the following error on a github action. ``` Run szenius/[email protected] /bin/docker exec 84fb6dea35660f52c06f74[9](https://mycode.dev/org/project/runs/4222125?check_suite_focus=true#step:6:10)77eeb07d6c07b5ebca12[11](https://mycode.dev/org/project/runs/4222125?check_suite_focus=true#step:6:12)3d046a3d932ae5afcaf sh -c "cat /etc/*release | grep ^ID" Configuring for platform linux (node:263) UnhandledPromiseRejectionWarning: Error: spawn...

I noticed you're doing `v1.0` and `v1.1` tags for releases. This is nice, but it means that people have to manually update their action references every time there's a release:...

We have a groovy(JDK) project which runs tests which depend on the time zone. We use the set-timezone action to pin the time zone. Previously, ubuntu-latest was using Ubuntu 22.04...